Formatting
[jalview.git] / src / com / stevesoft / pat / MultiMin.java
index f6d2fd8..f741e99 100755 (executable)
@@ -10,9 +10,13 @@ package com.stevesoft.pat;
 /** This extension of multi is the version of multi\r
  which wants to match the fewest number of characters.\r
  It implements the *? type of syntax. */\r
-class MultiMin extends Multi {\r
-    MultiMin(patInt i1,patInt i2,Pattern p) throws RegSyntax {\r
-        super(i1,i2,p);\r
-        matchFewest = true;\r
-    }\r
+class MultiMin\r
+    extends Multi\r
+{\r
+  MultiMin(patInt i1, patInt i2, Pattern p)\r
+      throws RegSyntax\r
+  {\r
+    super(i1, i2, p);\r
+    matchFewest = true;\r
+  }\r
 };\r