Reuse constant instead of magic char.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1743434 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2016-05-11 21:32:00 +00:00
parent 88d6162cde
commit b033db6a21
1 changed files with 2 additions and 2 deletions

View File

@ -1164,10 +1164,10 @@ public final class CSVFormat implements Serializable {
int len = count; int len = count;
int pos = 0; int pos = 0;
while (pos < len && charSequence.charAt(pos) <= Constants.SP) { while (pos < len && charSequence.charAt(pos) <= SP) {
pos++; pos++;
} }
while (pos < len && charSequence.charAt(len - 1) <= Constants.SP) { while (pos < len && charSequence.charAt(len - 1) <= SP) {
len--; len--;
} }
return pos > 0 || len < count ? charSequence.subSequence(pos, len) : charSequence; return pos > 0 || len < count ? charSequence.subSequence(pos, len) : charSequence;