Skip to content

Commit

Permalink
Fix build after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan202 committed Oct 27, 2024
1 parent 997578a commit 20caa7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private static ImmutableList<VariableTree> getVariablesInCompilationUnit(
@Override
public @Nullable Void visitVariable(VariableTree variableTree, @Nullable Void unused) {
variablesInFileBuilder.add(variableTree);
return super.visitVariable(variableTree, unused);
return super.visitVariable(variableTree, null);
}
}.scan(tree, null);

Expand Down

0 comments on commit 20caa7d

Please sign in to comment.