Skip to content

Commit

Permalink
Fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 13, 2024
1 parent a6902eb commit 6f14b4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public TreeVisitor<?, ExecutionContext> getVisitor(Set<JavaType.Variable> acc) {
return new JavaIsoVisitor<ExecutionContext>() {

@Override
public @Nullable J.MethodInvocation visitMethodInvocation(J.MethodInvocation mi, ExecutionContext ctx) {
public J.@Nullable MethodInvocation visitMethodInvocation(J.MethodInvocation mi, ExecutionContext ctx) {
// Return if this method does not match Hashtable.put()
if (!methodMatcher.matches(mi)) {
return mi;
Expand Down

0 comments on commit 6f14b4c

Please sign in to comment.