X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2FFastMulti.java;h=ab6a58616c4eadc742292e6861c9ebbfab6c7f22;hb=02816cb583d01a3a0cdd612d5d0a1f24c0d0b99d;hp=a8387b402b4a9331b7870e839e26fabb8ae4ec14;hpb=506d60f0e188723ddc91c26824b41ac7034df3fe;p=jalview.git diff --git a/src/com/stevesoft/pat/FastMulti.java b/src/com/stevesoft/pat/FastMulti.java index a8387b4..ab6a586 100755 --- a/src/com/stevesoft/pat/FastMulti.java +++ b/src/com/stevesoft/pat/FastMulti.java @@ -7,7 +7,7 @@ // package com.stevesoft.pat; -import java.util.*; +import java.util.Hashtable; /** * A special case of Multi, implemented when minChars().equals(maxChars()), and @@ -34,8 +34,8 @@ class FastMulti extends PatternSub { if (p == null) { - RegSyntaxError.endItAll("Null length pattern " - + "followed by *, +, or other Multi."); + RegSyntaxError.endItAll( + "Null length pattern " + "followed by *, +, or other Multi."); } fewestMatches = a; mostMatches = b; @@ -158,7 +158,8 @@ class FastMulti extends PatternSub { try { - FastMulti fm = new FastMulti(fewestMatches, mostMatches, sub.clone(h)); + FastMulti fm = new FastMulti(fewestMatches, mostMatches, + sub.clone(h)); fm.matchFewest = matchFewest; return fm; } catch (RegSyntax rs)