X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2FMultiMin.java;h=6054e06ef3c668c61e8319042ec91f1eeb02fcf7;hb=83c47970701adc1cd6100332544f7f563e71f8f5;hp=f6d2fd8734d35d4b825f56810bf3f2d505ddfc34;hpb=c40cf903f740a72ab63dd1abc10fa33450ce660d;p=jalview.git diff --git a/src/com/stevesoft/pat/MultiMin.java b/src/com/stevesoft/pat/MultiMin.java index f6d2fd8..6054e06 100755 --- a/src/com/stevesoft/pat/MultiMin.java +++ b/src/com/stevesoft/pat/MultiMin.java @@ -1,18 +1,21 @@ -// -// 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; - } -}; +// +// 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; + } +};