j2sNative clean-up. Fixes problem with second try of sequence fetching
[jalview.git] / src / jalview / io / ModellerDescription.java
index 7e05b15..f4de52d 100755 (executable)
@@ -25,6 +25,8 @@ import jalview.datamodel.SequenceI;
 
 import java.util.List;
 
+import com.stevesoft.pat.Regex;
+
 public class ModellerDescription
 {
   /**
@@ -96,7 +98,7 @@ public class ModellerDescription
   private resCode validResidueCode(String field)
   {
     Integer val = null;
-    com.stevesoft.pat.Regex r = new com.stevesoft.pat.Regex(
+    Regex r = new Regex(
             "\\s*((([-0-9]+).?)|FIRST|LAST|@)");
 
     if (!r.search(field))