Useless parentheses.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1743431 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4a6af45908
commit
8a526c0ab5
|
@ -1164,13 +1164,13 @@ public final class CSVFormat implements Serializable {
|
|||
int len = count;
|
||||
int pos = 0;
|
||||
|
||||
while ((pos < len) && (charSequence.charAt(pos) <= ' ')) {
|
||||
while (pos < len && charSequence.charAt(pos) <= ' ') {
|
||||
pos++;
|
||||
}
|
||||
while ((pos < len) && (charSequence.charAt(len - 1) <= ' ')) {
|
||||
while (pos < len && charSequence.charAt(len - 1) <= ' ') {
|
||||
len--;
|
||||
}
|
||||
return (pos > 0) || (len < count) ? charSequence.subSequence(pos, len) : charSequence;
|
||||
return pos > 0 || len < count ? charSequence.subSequence(pos, len) : charSequence;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue