coverity#1326973 SBSC: String concatenation in loop using + operator
Change-Id: I8fb8afa2951201106443f76fde3f55ead24d43c2
This commit is contained in:
@@ -250,19 +250,21 @@ public class UnoUrl {
|
|||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
char c = ',';
|
char c = ',';
|
||||||
String aKey = "";
|
|
||||||
String aValue = "";
|
|
||||||
|
|
||||||
|
StringBuffer sb = new StringBuffer();
|
||||||
while ((pos < paramString.length())
|
while ((pos < paramString.length())
|
||||||
&& ((c = paramString.charAt(pos++)) != '=')) {
|
&& ((c = paramString.charAt(pos++)) != '=')) {
|
||||||
aKey += c;
|
sb.append(c);
|
||||||
}
|
}
|
||||||
|
String aKey = sb.toString();
|
||||||
|
|
||||||
|
sb = new StringBuffer();
|
||||||
while ((pos < paramString.length())
|
while ((pos < paramString.length())
|
||||||
&& ((c = paramString.charAt(pos++)) != ',')
|
&& ((c = paramString.charAt(pos++)) != ',')
|
||||||
&& c != ';') {
|
&& c != ';') {
|
||||||
aValue += c;
|
sb.append(c);
|
||||||
}
|
}
|
||||||
|
String aValue = sb.toString();
|
||||||
|
|
||||||
if ((aKey.length() > 0) && (aValue.length() > 0)) {
|
if ((aKey.length() > 0) && (aValue.length() > 0)) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user