X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2FMultiMin.java;h=f741e99166471c12dcb940a1ea43bc0f08ebf5d8;hb=7bc226b58110fa26d9dbd3f0c78095d06909ffc3;hp=f6d2fd8734d35d4b825f56810bf3f2d505ddfc34;hpb=dd74fc4938723fe5ec48d4e5fdcfbe58ac42a48d;p=jalview.git diff --git a/src/com/stevesoft/pat/MultiMin.java b/src/com/stevesoft/pat/MultiMin.java index f6d2fd8..f741e99 100755 --- a/src/com/stevesoft/pat/MultiMin.java +++ b/src/com/stevesoft/pat/MultiMin.java @@ -10,9 +10,13 @@ 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; - } +class MultiMin + extends Multi +{ + MultiMin(patInt i1, patInt i2, Pattern p) + throws RegSyntax + { + super(i1, i2, p); + matchFewest = true; + } };