Jalview-JS/JAL-3253-applet
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Thu, 9 May 2019 18:54:03 +0000 (13:54 -0500)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Thu, 9 May 2019 19:05:42 +0000 (14:05 -0500)
1  2 
src/jalview/ws/rest/RestClient.java

@@@ -80,7 -80,7 +80,7 @@@ public class RestClient extends WSClien
      return jalview.gui.Desktop.getAlignFrameFor(av);
    }
  
--  RestClient getInstance()
++  private static RestClient getInstance()
    {
      Jalview j = Jalview.getInstance();
      return (j.restClient == null ? j.restClient = new RestClient()
  
    public static RestClient[] getRestClients()
    {
--    RestClient c = Jalview.getInstance().restClient;
++    RestClient c = getInstance();
  
      if (c.services == null)
      {
      if (rsbsUrls != null)
      {
        // TODO: consider validating services ?
--      RestClient c = Jalview.getInstance().restClient;
++      RestClient c = getInstance();
        c.services = new Vector<>(rsbsUrls);
        StringBuffer sprop = new StringBuffer();
        for (String s : c.services)