diff --git a/core-codemods/src/main/java/io/codemodder/codemods/CreateConstantForLiteral.java b/core-codemods/src/main/java/io/codemodder/codemods/CreateConstantForLiteral.java
index df740389b..eeaf200e6 100644
--- a/core-codemods/src/main/java/io/codemodder/codemods/CreateConstantForLiteral.java
+++ b/core-codemods/src/main/java/io/codemodder/codemods/CreateConstantForLiteral.java
@@ -73,8 +73,10 @@ protected void defineConstant(final String constantName) {
/**
* Adds a {@link FieldDeclaration} as the last member of the provided {@link
- * ClassOrInterfaceDeclaration}. Adding last seems like it would be preferred by users and better for JavaParser to match the existing indentation.
- */
+ * ClassOrInterfaceDeclaration}. Adding last seems like it would be preferred by users and better for
+ * JavaParser to match the existing indentation.
+ */
private void addConstantFieldToClass(final FieldDeclaration constantField) {
final NodeList> members = classOrInterfaceDeclaration.getMembers();
members.addLast(constantField);