JAL-2890 removed isError() check from validation job (gives NPE)
authorkjvdheide <kjvanderheide@dundee.ac.uk>
Thu, 1 Feb 2018 19:25:40 +0000 (19:25 +0000)
committerkjvdheide <kjvanderheide@dundee.ac.uk>
Thu, 1 Feb 2018 19:25:40 +0000 (19:25 +0000)
src/jalview/ext/cipres/CipresJob.java

index 9f2ea64..5a3092c 100644 (file)
@@ -189,11 +189,8 @@ public class CipresJob
       // validate before running some expensive job first.
       CiJob validateJob = validateJobParams();
 
-      // should be redundant but extra check here anyway.
-      if (!validateJob.isError())
-      {
         submittedJob = submitJob();
-      }
+
     }
     else
     {