JAL-1807 explicit imports (jalview.util)
[jalview.git] / src / jalview / util / UrlLink.java
index 3f72ab4..c0cf821 100644 (file)
@@ -22,16 +22,17 @@ package jalview.util;
 
 import java.util.Vector;
 
+import com.stevesoft.pat.Regex;
+
 public class UrlLink
 {
   /**
    * helper class to parse URL Link strings taken from applet parameters or
-   * jalview properties file using the com.stevesoft.pat.Regex implementation.
-   * Jalview 2.4 extension allows regular expressions to be used to parse ID
-   * strings and replace the result in the URL. Regex's operate on the whole ID
-   * string given to the matchURL method, if no regex is supplied, then only
-   * text following the first pipe symbol will be susbstituted. Usage
-   * documentation todo.
+   * jalview properties file using the Regex implementation. Jalview 2.4
+   * extension allows regular expressions to be used to parse ID strings and
+   * replace the result in the URL. Regex's operate on the whole ID string given
+   * to the matchURL method, if no regex is supplied, then only text following
+   * the first pipe symbol will be susbstituted. Usage documentation todo.
    */
   private String url_suffix, url_prefix, target, label, regexReplace;
 
@@ -85,7 +86,7 @@ public class UrlLink
         regexReplace = link.substring(psqid + 14, p);
         try
         {
-          com.stevesoft.pat.Regex rg = com.stevesoft.pat.Regex.perlCode("/"
+          Regex rg = Regex.perlCode("/"
                   + regexReplace + "/");
           if (rg == null)
           {
@@ -200,8 +201,7 @@ public class UrlLink
     {
       if (regexReplace != null)
       {
-        com.stevesoft.pat.Regex rg = com.stevesoft.pat.Regex.perlCode("/"
-                + regexReplace + "/");
+        Regex rg = Regex.perlCode("/" + regexReplace + "/");
         if (rg.search(idstring))
         {
           int ns = rg.numSubs();