JAL-2629 removed unnecessary exception throws from Jalview main method
authorTZVanaalten <TZVanaalten@LS30916.ad.lifesci.dundee.ac.uk>
Wed, 9 Aug 2017 11:01:05 +0000 (12:01 +0100)
committerTZVanaalten <TZVanaalten@LS30916.ad.lifesci.dundee.ac.uk>
Wed, 9 Aug 2017 11:01:05 +0000 (12:01 +0100)
src/jalview/bin/Jalview.java
src/jalview/gui/AlignFrame.java

index 76f9958..5fba92d 100755 (executable)
@@ -179,7 +179,6 @@ public class Jalview
    * @throws IOException
    */
   public static void main(String[] args)
-          throws IOException, InterruptedException
   {
     instance = new Jalview();
     instance.doMain(args);
@@ -190,7 +189,7 @@ public class Jalview
    * @throws InterruptedException
    * @throws IOException
    */
-  void doMain(String[] args) throws IOException, InterruptedException
+  void doMain(String[] args)
   {
     System.setSecurityManager(null);
     System.out.println("Java version: "
index 9b5681b..d670eba 100644 (file)
@@ -4660,7 +4660,6 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
    */
   public void loadJalviewDataFile(String file, DataSourceType sourceType,
           FileFormatI format, SequenceI assocSeq)
-          throws IOException, InterruptedException
   {
     try
     {