Suppress boxing warnings that are deliberate

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1099422 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-05-04 11:44:41 +00:00
parent 78de63c7c0
commit 543bbb4d64
1 changed files with 4 additions and 2 deletions

View File

@ -103,6 +103,7 @@ public class TypeUtilsTest<B> {
List<? super String>[] list13) { List<? super String>[] list13) {
} }
@SuppressWarnings("boxing") // deliberately used here
@Test @Test
public void testIsAssignable() throws SecurityException, NoSuchMethodException, public void testIsAssignable() throws SecurityException, NoSuchMethodException,
NoSuchFieldException { NoSuchFieldException {
@ -258,7 +259,7 @@ public class TypeUtilsTest<B> {
delegateBooleanAssertion(types, 9, 8, false); delegateBooleanAssertion(types, 9, 8, false);
list10 = list8; list10 = list8;
delegateBooleanAssertion(types, 8, 10, true); delegateBooleanAssertion(types, 8, 10, true);
list8 = (List<Object>[]) list10; // NOTE cast is required by Sun Jave, but not by Eclipse list8 = (List<Object>[]) list10; // NOTE cast is required by Sun Java, but not by Eclipse
delegateBooleanAssertion(types, 10, 8, false); delegateBooleanAssertion(types, 10, 8, false);
// list11 = list8; // list11 = list8;
delegateBooleanAssertion(types, 8, 11, false); delegateBooleanAssertion(types, 8, 11, false);
@ -371,7 +372,7 @@ public class TypeUtilsTest<B> {
Assert.assertTrue(TypeUtils.isAssignable(long.class, double.class)); Assert.assertTrue(TypeUtils.isAssignable(long.class, double.class));
du = fl; du = fl;
Assert.assertTrue(TypeUtils.isAssignable(float.class, double.class)); Assert.assertTrue(TypeUtils.isAssignable(float.class, double.class));
// du = bo; lo = in;
Assert.assertTrue(TypeUtils.isAssignable(int.class, long.class)); Assert.assertTrue(TypeUtils.isAssignable(int.class, long.class));
lo = new Integer(0); lo = new Integer(0);
Assert.assertTrue(TypeUtils.isAssignable(Integer.class, long.class)); Assert.assertTrue(TypeUtils.isAssignable(Integer.class, long.class));
@ -455,6 +456,7 @@ public class TypeUtilsTest<B> {
} }
} }
@SuppressWarnings("boxing") // boxing is deliberate here
@Test @Test
public void testIsInstance() throws SecurityException, NoSuchFieldException { public void testIsInstance() throws SecurityException, NoSuchFieldException {
Type intComparableType = getClass().getField("intComparable").getGenericType(); Type intComparableType = getClass().getField("intComparable").getGenericType();