Skip to content
Snippets Groups Projects
Commit 161c9162 authored by Daniel Plagge's avatar Daniel Plagge
Browse files

minor refactoring

parent 43e1923e
No related branches found
No related tags found
No related merge requests found
......@@ -450,10 +450,8 @@ public class TranslationVisitor implements ISimpleVisitor {
public void visitRelationalPredicate(final RelationalPredicate predicate) {
// EQUAL, NOTEQUAL, LT, LE, GT, GE, IN, NOTIN, SUBSET,
// NOTSUBSET, SUBSETEQ, NOTSUBSETEQ
predicate.getLeft().accept(this);
final PExpression left = expressions.pop();
predicate.getRight().accept(this);
final PExpression right = expressions.pop();
final PExpression left = getExpression(predicate.getLeft());
final PExpression right = getExpression(predicate.getRight());
final PPredicate result;
switch (predicate.getTag()) {
case Formula.EQUAL:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment