Skip to content

Commit 0ad30dc

Browse files
committed
spotless
1 parent 495b46c commit 0ad30dc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core-codemods/src/main/java/io/codemodder/codemods/CreateConstantForLiteral.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@ protected void defineConstant(final String constantName) {
7373

7474
/**
7575
* Adds a {@link FieldDeclaration} as the last member of the provided {@link
76-
* ClassOrInterfaceDeclaration}. Adding last seems like it would be <a href="https://github.com/pixee/codemodder-java/issues/288">preferred by users and better for JavaParser to match the existing indentation</a>.
77-
*/
76+
* ClassOrInterfaceDeclaration}. Adding last seems like it would be <a
77+
* href="https://github.com/pixee/codemodder-java/issues/288">preferred by users and better for
78+
* JavaParser to match the existing indentation</a>.
79+
*/
7880
private void addConstantFieldToClass(final FieldDeclaration constantField) {
7981
final NodeList<BodyDeclaration<?>> members = classOrInterfaceDeclaration.getMembers();
8082
members.addLast(constantField);

0 commit comments

Comments
 (0)