Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Feb 7, 2024
1 parent 427d17b commit 26193b8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ public J visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx)

private static class RemoveJobBuilderFactoryVisitor extends JavaIsoVisitor<ExecutionContext> {

private final ClassDeclaration scope;
private final J.ClassDeclaration scope;

private final MethodDeclaration enclosingMethod;
private final J.MethodDeclaration enclosingMethod;

public RemoveJobBuilderFactoryVisitor(ClassDeclaration scope, MethodDeclaration enclosingMethod) {
public RemoveJobBuilderFactoryVisitor(J.ClassDeclaration scope, J.MethodDeclaration enclosingMethod) {
this.scope = scope;
this.enclosingMethod = enclosingMethod;
}
Expand Down

0 comments on commit 26193b8

Please sign in to comment.