Skip to content

Commit

Permalink
Removed redundant semicolon. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
harawata committed Mar 19, 2014
1 parent 2e49ae0 commit 228bdba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class TrimSqlNode implements SqlNode {
private Configuration configuration;

public TrimSqlNode(Configuration configuration, SqlNode contents, String prefix, String prefixesToOverride, String suffix, String suffixesToOverride) {
this(configuration, contents, prefix, parseOverrides(prefixesToOverride), suffix, parseOverrides(suffixesToOverride));;
this(configuration, contents, prefix, parseOverrides(prefixesToOverride), suffix, parseOverrides(suffixesToOverride));
}

protected TrimSqlNode(Configuration configuration, SqlNode contents, String prefix, List<String> prefixesToOverride, String suffix, List<String> suffixesToOverride) {
Expand Down

0 comments on commit 228bdba

Please sign in to comment.