licencing and format applied (eclipse)
[jalview.git] / src / com / stevesoft / pat / NoPattern.java
index c5eba3c..444d094 100755 (executable)
@@ -1,33 +1,33 @@
-package //\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
-    com.stevesoft.pat;\r
-\r
-import java.util.*;\r
-\r
-/** The idea behind this class is simply to eliminate the need for\r
- * testing to see if Regex.thePattern is null.  Every instruction\r
- * we can eliminate from _search will help.\r
- */\r
-public class NoPattern\r
-    extends Pattern\r
-{\r
-  public String toString()\r
-  {\r
-    return "(?e=#)[^#d#D]";\r
-  }\r
-\r
-  public int matchInternal(int i, Pthings p)\r
-  {\r
-    return -1;\r
-  }\r
-\r
-  Pattern clone1(Hashtable h)\r
-  {\r
-    return new NoPattern();\r
-  }\r
-}\r
+package //
+// 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!
+//
+com.stevesoft.pat;
+
+import java.util.*;
+
+/**
+ * The idea behind this class is simply to eliminate the need for testing to see
+ * if Regex.thePattern is null. Every instruction we can eliminate from _search
+ * will help.
+ */
+public class NoPattern extends Pattern
+{
+  public String toString()
+  {
+    return "(?e=#)[^#d#D]";
+  }
+
+  public int matchInternal(int i, Pthings p)
+  {
+    return -1;
+  }
+
+  Pattern clone1(Hashtable h)
+  {
+    return new NoPattern();
+  }
+}