Modify Generators to allow multiple specs
[repair.git] / Repair / RepairCompiler / MCC / IR / ExprPredicate.java
index a282045d33be883e8dd53afcdffbb2b0d5bd3f0a..7c305db39f035989ffb47f0d57121735a3fcb055 100755 (executable)
@@ -3,10 +3,8 @@ package MCC.IR;
 import java.util.*;
 
 public class ExprPredicate extends Predicate {
-    
     Expr expr;
 
-
     public static final int SIZE=1;
     public static final int COMPARISON=2;
 
@@ -63,7 +61,7 @@ public class ExprPredicate extends Predicate {
        return expr.inverted();
     }
 
-    public boolean usesDescriptor(RelationDescriptor rd) {
+    public boolean usesDescriptor(Descriptor rd) {
        return expr.usesDescriptor(rd);
     }