Skip to content

Commit 56234fe

Browse files
committed
Polishing
1 parent c16f36b commit 56234fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-core/src/test/java/org/springframework/util/ObjectUtilsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ public void isEmptyArray() {
102102
assertTrue(isEmpty(new Object[0]));
103103
assertTrue(isEmpty(new Integer[0]));
104104

105-
assertFalse(isEmpty(new int[] { 42 }));
106-
assertFalse(isEmpty(new Integer[] { 42 }));
105+
assertFalse(isEmpty(new int[] {42}));
106+
assertFalse(isEmpty(new Integer[] {42}));
107107
}
108108

109109
@Test

0 commit comments

Comments
 (0)