X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2FEmblCdsSource.java;h=a73af61ce3772600b3bde4d87fb01459850b616a;hb=4f77328104498504339216829abf5ea87e2791ec;hp=c5159f277ef266c2bef3891e0893b8bfdc9feacb;hpb=2b8c0785318a3528e1876e8e2dd48b7d831eae69;p=jalview.git diff --git a/src/jalview/ws/dbsources/EmblCdsSource.java b/src/jalview/ws/dbsources/EmblCdsSource.java index c5159f2..a73af61 100644 --- a/src/jalview/ws/dbsources/EmblCdsSource.java +++ b/src/jalview/ws/dbsources/EmblCdsSource.java @@ -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