Skip to content

Commit

Permalink
Removes useless semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdrouet committed Feb 23, 2016
1 parent 4a95d8f commit 9205b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public YuiCompressorCssEngine(
@StringConfigParam(propertyKey = ApplicationConfig.CHARSET, defaultValue = "") final String cs,
@IntegerConfigParam(propertyKey = ApplicationConfig.LINE_BREAK_POS, defaultValue = -1) final Integer lbp) {
super(compress, ".min");
charset = IOUtils.checkCharset(cs);;
charset = IOUtils.checkCharset(cs);
lineBreakPos = lbp;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public YuiCompressorJavascriptEngine(
@BooleanConfigParam(propertyKey = ApplicationConfig.PRESERVE_SEMICOLONS, defaultValue = true) final Boolean keepSemiColons,
@BooleanConfigParam(propertyKey = ApplicationConfig.OBFUSCATE, defaultValue = true) final Boolean obfuscate) {
super(compress, ".min");
charset = IOUtils.checkCharset(cs);;
charset = IOUtils.checkCharset(cs);
lineBreakPos = lbp;
disableOptimization = disableOptim;
verbose = verb;
Expand Down

0 comments on commit 9205b81

Please sign in to comment.