Remove redundancy in Eclipse
[jalview.git] / src / com / stevesoft / pat / TransPat.java
index 27c1fb2..125a7bd 100755 (executable)
@@ -7,7 +7,6 @@
 //\r
 package com.stevesoft.pat;\r
 \r
-import java.util.*;\r
 \r
 /** This class is used to implement the Transformer\r
     @see com.stevesoft.pat.Transform\r
@@ -27,7 +26,7 @@ class TransPat extends Pattern {
         for(int i=0;i<ra_len;i++) {\r
             pt.ignoreCase = ra[i].ignoreCase;\r
             pt.mFlag = ra[i].mFlag;\r
-            pt.dotDoesntMatchCR = ra[i].dotDoesntMatchCR;\r
+            pt.dotDoesntMatchCR = Regex.dotDoesntMatchCR;\r
             int r = ra[i].thePattern.matchInternal(pos,pt);\r
             if(r >= 0) {\r
                 pn = i;\r