Polishing

This commit is contained in:
Juergen Hoeller 2018-11-22 22:03:36 +01:00
parent c16f36b537
commit 56234fe877
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ public class ObjectUtilsTests {
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