diff options
author | Steve Smokowski <ss835w@att.com> | 2019-07-18 11:55:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-18 11:55:25 +0000 |
commit | 582c5624b4947c14116477297bb4535043281bed (patch) | |
tree | c8b7f6f75ee96a13604e568546381adff9f385b2 /bpmn/mso-infrastructure-bpmn | |
parent | 6b0628ea06c0b9ce442527a06f4fe381522d0a76 (diff) | |
parent | 171b9b5a69c614784056ff146144252d8b33494b (diff) |
Merge "Commented out initialization of workflowResponse to prevent static analyzer warning about workflowResponse never being set to anything but null."
Diffstat (limited to 'bpmn/mso-infrastructure-bpmn')
-rw-r--r-- | bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/BPMNUtil.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/BPMNUtil.java b/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/BPMNUtil.java index f417a550d1..a94713e9e0 100644 --- a/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/BPMNUtil.java +++ b/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/BPMNUtil.java @@ -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; |