Skip to content

Commit

Permalink
Syntax as pre Pre JDK 8
Browse files Browse the repository at this point in the history
  • Loading branch information
amishra-u committed Dec 28, 2024
1 parent fab7ffd commit d32de67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/src/lombok/RunTestsViaDelombok.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public TransformationResult transformCode(final File file, TestParameters parame
}

public static class NodePositionMapper extends TreeProcessor {
Map<JCTree, Integer> nodePositions = new HashMap<>();
Map<JCTree, Integer> nodePositions = new HashMap<JCTree, Integer>();

@Override void processCompilationUnit(final JCCompilationUnit unit) {
unit.accept(new TreeScanner() {
Expand Down

0 comments on commit d32de67

Please sign in to comment.