Refactor commons code.
This commit is contained in:
parent
777590c82c
commit
dd4e7bdc7c
|
@ -892,15 +892,14 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build
|
|||
buffer[size++] = 't';
|
||||
buffer[size++] = 'r';
|
||||
buffer[size++] = 'u';
|
||||
buffer[size++] = 'e';
|
||||
} else {
|
||||
ensureCapacity(size + 5);
|
||||
buffer[size++] = 'f';
|
||||
buffer[size++] = 'a';
|
||||
buffer[size++] = 'l';
|
||||
buffer[size++] = 's';
|
||||
buffer[size++] = 'e';
|
||||
}
|
||||
buffer[size++] = 'e';
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
|
@ -759,10 +759,6 @@ public class StrTokenizer implements ListIterator<String>, Cloneable {
|
|||
continue;
|
||||
}
|
||||
|
||||
// copy regular character from inside quotes
|
||||
workArea.append(srcChars[pos++]);
|
||||
trimStart = workArea.size();
|
||||
|
||||
} else {
|
||||
// Not in quoting mode
|
||||
|
||||
|
@ -797,12 +793,11 @@ public class StrTokenizer implements ListIterator<String>, Cloneable {
|
|||
pos += trimmedLen;
|
||||
continue;
|
||||
}
|
||||
|
||||
// copy regular character from outside quotes
|
||||
}
|
||||
// copy regular character from inside quotes
|
||||
workArea.append(srcChars[pos++]);
|
||||
trimStart = workArea.size();
|
||||
}
|
||||
}
|
||||
|
||||
// return condition when end of string found
|
||||
addToken(tokenList, workArea.substring(0, trimStart));
|
||||
|
|
Loading…
Reference in New Issue