Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermarc committed Mar 22, 2024
1 parent 53ddff0 commit 9fa079d
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
import org.openrewrite.ExecutionContext;
import org.openrewrite.Recipe;
import org.openrewrite.TreeVisitor;
import org.openrewrite.internal.ListUtils;
import org.openrewrite.java.JavaIsoVisitor;
import org.openrewrite.java.MethodMatcher;
import org.openrewrite.java.tree.J;
import org.openrewrite.java.tree.J.Literal;
import org.openrewrite.java.tree.J.MethodInvocation;
import org.openrewrite.java.tree.JavaType;
import org.openrewrite.marker.SearchResult;

Expand All @@ -33,7 +31,7 @@ public TreeVisitor<?, ExecutionContext> getVisitor() {
MethodMatcher matcher = new MethodMatcher("com.sap.cds.ql.Select columns(..)");
return new JavaIsoVisitor<ExecutionContext>() {

@Override
/* @Override
public MethodInvocation visitMethodInvocation(MethodInvocation method,
ExecutionContext p) {
MethodInvocation m = super.visitMethodInvocation(method, p);
Expand All @@ -47,7 +45,7 @@ public MethodInvocation visitMethodInvocation(MethodInvocation method,
}));
}
return m;
}
} */

@Override
public Literal visitLiteral(Literal literal, ExecutionContext p) {
Expand Down

0 comments on commit 9fa079d

Please sign in to comment.