Skip to content
Snippets Groups Projects
Commit 174ba7a3 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

remove usless method

parent 5baad82b
No related branches found
No related tags found
Loading
...@@ -393,7 +393,7 @@ public class BOperation extends BuiltInOPs implements ASTConstants, ...@@ -393,7 +393,7 @@ public class BOperation extends BuiltInOPs implements ASTConstants,
findUnchangedVariablesInOpApplNode(obody); findUnchangedVariablesInOpApplNode(obody);
} }
} else if(!(var.getOperator() instanceof OpDeclNode)) { } else if(!(var.getOperator() instanceof OpDeclNode)) {
throw new RuntimeException("cannot convert to list of unchanged variables: " + var.getOperator().getName() + " " + var.getLocation()); throw new RuntimeException("Cannot convert to list of UNCHANGED variables: " + var.getOperator().getName() + " " + var.getLocation());
} else { } else {
unchangedVariablesList.add((OpDeclNode) var unchangedVariablesList.add((OpDeclNode) var
.getOperator()); .getOperator());
...@@ -409,10 +409,6 @@ public class BOperation extends BuiltInOPs implements ASTConstants, ...@@ -409,10 +409,6 @@ public class BOperation extends BuiltInOPs implements ASTConstants,
} }
private void addUnchangedVariablesInOpApplNodeTuple(OpApplNode k) {
}
} }
class PrimedVariablesFinder extends AbstractASTVisitor { class PrimedVariablesFinder extends AbstractASTVisitor {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment