JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / src / jalview / ws / dbsources / EmblCdsSource.java
index c5159f2..a73af61 100644 (file)
@@ -22,15 +22,12 @@ package jalview.ws.dbsources;
 
 import jalview.datamodel.AlignmentI;
 import jalview.datamodel.DBRefSource;
-import jalview.util.Platform;
 
 import com.stevesoft.pat.Regex;
 
 public class EmblCdsSource extends EmblXmlSource
 {
 
-  private Regex ACCESSION_REGEX = null;
-
   public EmblCdsSource()
   {
     super();
@@ -45,11 +42,7 @@ public class EmblCdsSource extends EmblXmlSource
   @Override
   public Regex getAccessionValidator()
   {
-    if (ACCESSION_REGEX == null)
-    {
-      ACCESSION_REGEX = Platform.newRegex("^[A-Z]+[0-9]+", null);
-    }
-    return ACCESSION_REGEX;
+    return new Regex("^[A-Z]+[0-9]+");
   }
 
   @Override