Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Nov 22, 2018
1 parent 2e55486 commit 39925c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ public void isEmptyArray() {
assertTrue(isEmpty(new Object[0]));
assertTrue(isEmpty(new Integer[0]));

assertFalse(isEmpty(new int[] { 42 }));
assertFalse(isEmpty(new Integer[] { 42 }));
assertFalse(isEmpty(new int[] {42}));
assertFalse(isEmpty(new Integer[] {42}));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ protected boolean isInvalidPath(String path) {
}
if (path.contains("..") && StringUtils.cleanPath(path).contains("../")) {
if (logger.isTraceEnabled()) {
logger.trace("Invalid Path contains \"../\" after call to StringUtils#cleanPath: [" + path + "]");
logger.trace("Path contains \"../\" after call to StringUtils#cleanPath: [" + path + "]");
}
return true;
}
Expand Down

0 comments on commit 39925c3

Please sign in to comment.