(no commit message)
[utils] / support / test / org / wamblee / conditions / OrConditionTest.java
index 26541ed75c5677a19f15f6fc7070605e3c75db0b..2fad311027f106ebf94dabada69cc4dc320f4ff1 100644 (file)
@@ -26,9 +26,6 @@ import junit.framework.TestCase;
  */
 public class OrConditionTest extends TestCase {
     
-    private Condition<Integer> _false = new FixedCondition(false);
-    private Condition<Integer> _true = new FixedCondition(true);
-    
     public void checkResult(boolean aFirst, boolean aSecond, boolean aResult) { 
         OrCondition<Integer> or = new OrCondition<Integer>(new FixedCondition<Integer>(aFirst), 
                 new FixedCondition<Integer>(aSecond));