JAL-4036 removing the query field code from the dropdown indexes
[jalview.git] / src / com / stevesoft / pat / MultiMin.java
index f6d2fd8..6054e06 100755 (executable)
@@ -1,18 +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 extends Multi {\r
-    MultiMin(patInt i1,patInt i2,Pattern p) throws RegSyntax {\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;
+  }
+};