Skip to content

Commit

Permalink
[Fix] Add missing ';'
Browse files Browse the repository at this point in the history
  • Loading branch information
rodionnv committed Sep 25, 2023
1 parent a1201c9 commit bf17fb8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -413,7 +413,7 @@ public void loadConfiguration() {
setDelimiter(',');
break;
case TSV:
setDelimiter('\t')
setDelimiter('\t');
break;
}
setDelimiter(getPropertyValue(P_DELIMITER, ((char) delimiter)));
Expand Down

0 comments on commit bf17fb8

Please sign in to comment.