JAL-1705 DbSourceProxy properties converted to methods, tidy/format code
[jalview.git] / src / jalview / util / DBRefUtils.java
index b8f1dd5..cdf2325 100755 (executable)
@@ -473,36 +473,4 @@ public class DBRefUtils
     return ref;
   }
 
-  /**
-   * Extract valid accession strings from a query string. Used by the
-   * SequenceFetcher and DBRefFetcher to create valid accession strings from an
-   * ID string for database sources with a Regex validation field.
-   * 
-   * @param proxy
-   * @param q
-   * @return q if proxy.getAccessionValidator()==null, otherwise the matched
-   *         region or the first subgroup match from the matched region
-   */
-  public static String processQueryToAccessionFor(DbSourceProxy proxy,
-          String q)
-  {
-    if (proxy.getAccessionValidator() != null)
-    {
-      Regex vgr = proxy.getAccessionValidator();
-      vgr.search(q);
-      if (vgr.numSubs() > 0)
-      {
-        return (vgr.stringMatched(1));
-      }
-      else
-      {
-        return (vgr.stringMatched());
-      }
-    }
-    else
-    {
-      return (q);
-    }
-  }
-
 }