Fix checkstyle violations in StringSubstitutor#createInterpolator.
diff --git a/src/main/java/org/apache/commons/text/StringSubstitutor.java b/src/main/java/org/apache/commons/text/StringSubstitutor.java
index fa33d61..6764fe6 100644
--- a/src/main/java/org/apache/commons/text/StringSubstitutor.java
+++ b/src/main/java/org/apache/commons/text/StringSubstitutor.java
@@ -182,8 +182,9 @@
             StringMatcherFactory.INSTANCE.stringMatcher(DEFAULT_VAR_DEFAULT);
 
     /**
-     * Creates a new instance using the interpolator string lookup {@link StringLookupFactory#interpolatorStringLookup()}.
-     * 
+     * Creates a new instance using the interpolator string lookup
+     * {@link StringLookupFactory#interpolatorStringLookup()}.
+     *
      * @return a new instance using the interpolator string lookup.
      * @see StringLookupFactory#interpolatorStringLookup()
      * @since 1.8
@@ -191,7 +192,7 @@
     public static StringSubstitutor createInterpolator() {
         return new StringSubstitutor(StringLookupFactory.INSTANCE.interpolatorStringLookup());
     }
-    
+
     /**
      * Replaces all the occurrences of variables in the given source object with their matching values from the map.
      *