licencing and format applied (eclipse)
[jalview.git] / src / com / stevesoft / pat / UniValidator.java
index 7fbac56..31ae272 100755 (executable)
@@ -1,16 +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 extends Validator {\r
-    public patInt minChars() { return new patInt(1); }\r
-    public patInt maxChars() { return new patInt(1); }\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);
+  }
+}