@@ -1318,7 +1318,6 @@ void testHierarchyIncludingInterfaces() {
13181318
13191319 @ Test
13201320 void testIsPrimitiveOrWrapper () {
1321-
13221321 // test primitive wrapper classes
13231322 assertTrue (ClassUtils .isPrimitiveOrWrapper (Boolean .class ), "Boolean.class" );
13241323 assertTrue (ClassUtils .isPrimitiveOrWrapper (Byte .class ), "Byte.class" );
@@ -1328,7 +1327,6 @@ void testIsPrimitiveOrWrapper() {
13281327 assertTrue (ClassUtils .isPrimitiveOrWrapper (Long .class ), "Long.class" );
13291328 assertTrue (ClassUtils .isPrimitiveOrWrapper (Double .class ), "Double.class" );
13301329 assertTrue (ClassUtils .isPrimitiveOrWrapper (Float .class ), "Float.class" );
1331-
13321330 // test primitive classes
13331331 assertTrue (ClassUtils .isPrimitiveOrWrapper (Boolean .TYPE ), "boolean" );
13341332 assertTrue (ClassUtils .isPrimitiveOrWrapper (Byte .TYPE ), "byte" );
@@ -1339,7 +1337,6 @@ void testIsPrimitiveOrWrapper() {
13391337 assertTrue (ClassUtils .isPrimitiveOrWrapper (Double .TYPE ), "double" );
13401338 assertTrue (ClassUtils .isPrimitiveOrWrapper (Float .TYPE ), "float" );
13411339 assertTrue (ClassUtils .isPrimitiveOrWrapper (Void .TYPE ), "Void.TYPE" );
1342-
13431340 // others
13441341 assertFalse (ClassUtils .isPrimitiveOrWrapper (null ), "null" );
13451342 assertFalse (ClassUtils .isPrimitiveOrWrapper (Void .class ), "Void.class" );
0 commit comments