JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / com / stevesoft / pat / ReplaceRule.java
index 74a7a25..6f44db6 100755 (executable)
@@ -17,8 +17,8 @@ import java.util.Hashtable;
  * default methods) that are needed by the clone() or toString() methods on this
  * class. During the replacement process, each ReplaceRule tells the replacer
  * what to add to StringBuffer and uses the contents of the Regular expression
- * result to get the information it needs to do this. Here is an <a
- * href="http://javaregex.com/code/fancy.java.html">example</a>
+ * result to get the information it needs to do this. Here is an
+ * <a href="http://javaregex.com/code/fancy.java.html">example</a>
  * 
  * @see com.stevesoft.pat.NullRule
  * @see com.stevesoft.pat.AmpersandRule
@@ -211,8 +211,8 @@ public abstract class ReplaceRule
             }
             else if (tmp instanceof Transformer)
             {
-              head = add(head, new PushRule(var.substring(1),
-                      (Transformer) tmp));
+              head = add(head,
+                      new PushRule(var.substring(1), (Transformer) tmp));
             }
             else
             {
@@ -229,8 +229,8 @@ public abstract class ReplaceRule
             }
             else if (tmp instanceof Transformer)
             {
-              head = add(head, new ChangeRule(var.substring(1),
-                      (Transformer) tmp));
+              head = add(head,
+                      new ChangeRule(var.substring(1), (Transformer) tmp));
             }
             else
             {