merge from 2_4_Release branch
[jalview.git] / src / com / stevesoft / pat / UniValidator.java
index 4d86074..31ae272 100755 (executable)
@@ -1,25 +1,24 @@
-//\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 provides a base class for all the Unicode character\r
- * matching rules.\r
- */\r
-class UniValidator\r
-    extends Validator\r
-{\r
-  public patInt minChars()\r
-  {\r
-    return new patInt(1);\r
-  }\r
-\r
-  public patInt maxChars()\r
-  {\r
-    return new patInt(1);\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 provides a base class for all the Unicode character matching rules.
+ */
+class UniValidator extends Validator
+{
+  public patInt minChars()
+  {
+    return new patInt(1);
+  }
+
+  public patInt maxChars()
+  {
+    return new patInt(1);
+  }
+}