JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / com / stevesoft / pat / FastMulti.java
index cad69ee..ab6a586 100755 (executable)
@@ -34,8 +34,8 @@ class FastMulti extends PatternSub
   {
     if (p == null)
     {
-      RegSyntaxError.endItAll("Null length pattern "
-              + "followed by *, +, or other Multi.");
+      RegSyntaxError.endItAll(
+              "Null length pattern " + "followed by *, +, or other Multi.");
     }
     fewestMatches = a;
     mostMatches = b;
@@ -158,7 +158,8 @@ class FastMulti extends PatternSub
   {
     try
     {
-      FastMulti fm = new FastMulti(fewestMatches, mostMatches, sub.clone(h));
+      FastMulti fm = new FastMulti(fewestMatches, mostMatches,
+              sub.clone(h));
       fm.matchFewest = matchFewest;
       return fm;
     } catch (RegSyntax rs)