X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2FMultiMin.java;fp=src%2Fcom%2Fstevesoft%2Fpat%2FMultiMin.java;h=6054e06ef3c668c61e8319042ec91f1eeb02fcf7;hb=506d60f0e188723ddc91c26824b41ac7034df3fe;hp=f741e99166471c12dcb940a1ea43bc0f08ebf5d8;hpb=60f2d6c034560415fd0139c8bc7df0c19cae1186;p=jalview.git diff --git a/src/com/stevesoft/pat/MultiMin.java b/src/com/stevesoft/pat/MultiMin.java index f741e99..6054e06 100755 --- a/src/com/stevesoft/pat/MultiMin.java +++ b/src/com/stevesoft/pat/MultiMin.java @@ -1,22 +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; + } +};