From dff521a8dde15542be1f65c634a628ee17b6fba3 Mon Sep 17 00:00:00 2001 From: kjvdheide Date: Thu, 1 Feb 2018 19:25:40 +0000 Subject: [PATCH] JAL-2890 removed isError() check from validation job (gives NPE) --- src/jalview/ext/cipres/CipresJob.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/jalview/ext/cipres/CipresJob.java b/src/jalview/ext/cipres/CipresJob.java index 9f2ea64..5a3092c 100644 --- a/src/jalview/ext/cipres/CipresJob.java +++ b/src/jalview/ext/cipres/CipresJob.java @@ -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 { -- 1.7.10.2