Skip to content

Commit

Permalink
trim excluded column names
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Sep 17, 2011
1 parent 376ab22 commit 17a14f9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -175,7 +175,7 @@ private List<String> getExcludedColumnNamesAsList() {
StringTokenizer tokenizer = new StringTokenizer(excludedColumnNames, ",");
List<String> columnNames = new ArrayList<String>(tokenizer.countTokens());
while (tokenizer.hasMoreTokens()) {
columnNames.add(tokenizer.nextToken().toLowerCase());
columnNames.add(tokenizer.nextToken().toLowerCase().trim());
}
return columnNames;
} else {
Expand Down

0 comments on commit 17a14f9

Please sign in to comment.