Skip to content

Commit

Permalink
Fix doAfterVisit indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Aug 14, 2023
1 parent c15a636 commit a6b975a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public void visitClassDef(JCTree.JCClassDecl classDecl) {
recipe.append(" maybeAddImport(\"" + import_.substring(0, dot) + "\", \"" + import_.substring(dot + 1) + "\");\n");
}
}
recipe.append(" doAfterVisit(new ShortenFullyQualifiedTypeReferences().getVisitor());\n");
recipe.append(" doAfterVisit(new ShortenFullyQualifiedTypeReferences().getVisitor());\n");
if (parameters.isEmpty()) {
recipe.append(" return " + after + ".apply(getCursor(), elem.getCoordinates().replace());\n");
} else {
Expand Down

0 comments on commit a6b975a

Please sign in to comment.