File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
spring-core/src/test/java/org/springframework/util
spring-webmvc/src/main/java/org/springframework/web/servlet/resource Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ public void isEmptyArray() {
102
102
assertTrue (isEmpty (new Object [0 ]));
103
103
assertTrue (isEmpty (new Integer [0 ]));
104
104
105
- assertFalse (isEmpty (new int [] { 42 }));
106
- assertFalse (isEmpty (new Integer [] { 42 }));
105
+ assertFalse (isEmpty (new int [] {42 }));
106
+ assertFalse (isEmpty (new Integer [] {42 }));
107
107
}
108
108
109
109
@ Test
Original file line number Diff line number Diff line change @@ -657,7 +657,7 @@ protected boolean isInvalidPath(String path) {
657
657
}
658
658
if (path .contains (".." ) && StringUtils .cleanPath (path ).contains ("../" )) {
659
659
if (logger .isTraceEnabled ()) {
660
- logger .trace ("Invalid Path contains \" ../\" after call to StringUtils#cleanPath: [" + path + "]" );
660
+ logger .trace ("Path contains \" ../\" after call to StringUtils#cleanPath: [" + path + "]" );
661
661
}
662
662
return true ;
663
663
}
You can’t perform that action at this time.
0 commit comments