resolve conflict with Mungo's merge
authortcofoegbu <tcnofoegbu@dundee.ac.uk>
Tue, 22 Mar 2016 17:02:10 +0000 (17:02 +0000)
committertcofoegbu <tcnofoegbu@dundee.ac.uk>
Tue, 22 Mar 2016 17:02:10 +0000 (17:02 +0000)
1  2 
src/jalview/ws/dbsources/EmblXmlSource.java
src/jalview/ws/ebi/EBIFetchClient.java

@@@ -97,15 -98,15 +98,17 @@@ public class EBIFetchClien
     * @return the file holding the response
     * @throws OutOfMemoryError
     */
-   public File fetchDataAsFile(String ids, String f, String s, String ext)
 -  public File fetchDataAsFile(String ids, String format, String s)
++
++  public File fetchDataAsFile(String ids, String format, String s,
++          String ext)
            throws OutOfMemoryError
    {
      File outFile = null;
      try
      {
 -      outFile = File.createTempFile("jalview", ".xml");
 +      outFile = File.createTempFile("jalview", ext);
        outFile.deleteOnExit();
-       fetchData(ids, f, s, outFile);
+       fetchData(ids, format, s, outFile);
        if (outFile.length() == 0)
        {
          outFile.delete();