merge from 2_4_Release branch
[jalview.git] / src / com / stevesoft / pat / MultiMin.java
index f741e99..6054e06 100755 (executable)
@@ -1,22 +1,21 @@
-//\r
-// This software is now distributed according to\r
-// the Lesser Gnu Public License.  Please see\r
-// http://www.gnu.org/copyleft/lesser.txt for\r
-// the details.\r
-//    -- Happy Computing!\r
-//\r
-package com.stevesoft.pat;\r
-\r
-/** 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\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
+//
+// This software is now distributed according to
+// the Lesser Gnu Public License.  Please see
+// http://www.gnu.org/copyleft/lesser.txt for
+// the details.
+//    -- Happy Computing!
+//
+package com.stevesoft.pat;
+
+/**
+ * This extension of multi is the version of multi which wants to match the
+ * fewest number of characters. It implements the *? type of syntax.
+ */
+class MultiMin extends Multi
+{
+  MultiMin(patInt i1, patInt i2, Pattern p) throws RegSyntax
+  {
+    super(i1, i2, p);
+    matchFewest = true;
+  }
+};