Skip to content

Commit

Permalink
Remove java 7 features
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawi01 committed Jun 16, 2024
1 parent 0ab79d6 commit 8e276df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/delombok/lombok/delombok/DocCommentIntegrator.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public List<CommentInfo> integrate(List<CommentInfo> comments, JCCompilationUnit
}

private NavigableMap<Integer, JCTree> buildNodePositionMap(JCCompilationUnit unit) {
NavigableMap<Integer, JCTree> positionMap = new TreeMap<>();
final NavigableMap<Integer, JCTree> positionMap = new TreeMap<Integer, JCTree>();
unit.accept(new TreeScanner() {
@Override
public void visitClassDef(JCClassDecl tree) {
Expand Down

0 comments on commit 8e276df

Please sign in to comment.