Skip to content

Commit

Permalink
[Feature #15] Trim column title to normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Sep 18, 2021
1 parent 16d3b82 commit 42c7d48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ private void onTable(String tableUri) {
}

private String normalize(String label) {
return label.replaceAll("[^\\w]", "_");
return label.trim().replaceAll("[^\\w]", "_");
}

private Reader getReader() {
Expand Down

0 comments on commit 42c7d48

Please sign in to comment.