more findbugs
[utils] / support / general / src / test / java / org / wamblee / conditions / AndConditionTest.java
index 6170b8ea06ad3f4bb51edb97b1749f8f7f7d5c5f..f9faa729d3e5bc9bc762d3911994cb80e0fa6d21 100644 (file)
@@ -41,7 +41,7 @@ public class AndConditionTest extends TestCase {
         }
 
         AndCondition<Integer> and = new AndCondition<Integer>(conditions);
-        assertEquals(aResult, and.matches(new Integer(0)));
+        assertEquals(aResult, and.matches(Integer.valueOf(0)));
     }
 
     /**