Skip to content

Commit

Permalink
Merge pull request #225 from hazendaz/master
Browse files Browse the repository at this point in the history
Checkstyle fixes
  • Loading branch information
hazendaz authored Oct 21, 2017
2 parents e319836 + fad81f1 commit 7bd03d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ private Properties readFileHashCacheFile() {
return props;
}

try (final BufferedInputStream stream = new BufferedInputStream(new FileInputStream(cacheFile))) {
try (BufferedInputStream stream = new BufferedInputStream(new FileInputStream(cacheFile))) {
props.load(stream);
} catch (IOException e) {
log.warn("Cannot load file hash cache properties file", e);
Expand Down
2 changes: 1 addition & 1 deletion src/config/jsoup/formatter/html.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ charset=UTF-8
escapeMode=xhtml
indentAmount=1
outlineMode=true
pretty=true
pretty=true
2 changes: 1 addition & 1 deletion src/config/jsoup/formatter/xml.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ charset=UTF-8
escapeMode=xhtml
indentAmount=1
outlineMode=true
pretty=true
pretty=true
2 changes: 1 addition & 1 deletion src/config/ph-css/formatter/css.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
#

indent=2
rgbAsHex=true
rgbAsHex=true

0 comments on commit 7bd03d2

Please sign in to comment.