Skip to content

Commit

Permalink
move to else
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimipour committed May 14, 2024
1 parent ceb99cd commit cfcfb35
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,10 @@ public ClassFieldRecord build(String[] values) {
// Already visited.
tree = lastParsedSourceFile.b;
} else {
// Not visited yet, parse the source file.
tree = Injector.parse(path);
lastParsedSourceFile = new Pair<>(path, tree);
}
lastParsedSourceFile = new Pair<>(path, tree);
if (tree == null) {
return null;
}
Expand Down

0 comments on commit cfcfb35

Please sign in to comment.