BATCH-1696: don't trim whitespace from unquoted text

This commit is contained in:
Dave Syer
2011-03-15 09:29:21 +00:00
parent a2e831cf6d
commit 57b0cb7498
2 changed files with 40 additions and 4 deletions

View File

@@ -168,8 +168,9 @@ public class DelimitedLineTokenizer extends AbstractLineTokenizer {
endLength = 1;
}
value = value.substring(1, endLength);
return value;
}
return value;
return string;
}
/**