X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2FUniValidator.java;h=31ae2728af1e2c3ed62e7e0c5a37e9a5a52bea9b;hb=refs%2Fheads%2Fmerges%2FJAL-2906_update2_11_from_2_10_4;hp=7fbac56d17b5d5db6b5573ac593d95b1f6e44751;hpb=c40cf903f740a72ab63dd1abc10fa33450ce660d;p=jalview.git diff --git a/src/com/stevesoft/pat/UniValidator.java b/src/com/stevesoft/pat/UniValidator.java index 7fbac56..31ae272 100755 --- a/src/com/stevesoft/pat/UniValidator.java +++ b/src/com/stevesoft/pat/UniValidator.java @@ -1,16 +1,24 @@ -// -// 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); } -} +// +// 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); + } +}