Commented out initialization of workflowResponse to prevent 45/90945/4
authorOleksandr Moliavko <o.moliavko@samsung.com>
Fri, 5 Jul 2019 12:14:07 +0000 (15:14 +0300)
committerOleksandr Moliavko <o.moliavko@samsung.com>
Fri, 12 Jul 2019 10:03:02 +0000 (13:03 +0300)
static analyzer warning about workflowResponse never being
set to anything but null.

Issue-ID: SO-1841
Signed-off-by: Oleksandr Moliavko <o.moliavko@samsung.com>
Change-Id: Ib150e3836fda9b7d9785a574f904b2c61bfa39f4

bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/BPMNUtil.java

index f417a55..a94713e 100644 (file)
@@ -317,7 +317,8 @@ public class BPMNUtil {
      */
     static class ProcessThread extends Thread {
 
-        public WorkflowResponse workflowResponse = null;
+        public WorkflowResponse workflowResponse;
+        // public WorkflowResponse workflowResponse = null;
         public String processKey;
         public boolean started;
         public ProcessEngineServices processEngineServices;