summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-17 20:07:32 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-17 20:07:32 +0000
commit6bb4afd25cd54babc77a963d0ddc9d8dd43b0b18 (patch)
treeb33b9624de68aacfa6cf7c0c8e349f56f4947292
parent29c92e021b2e0ea7bfe11db642d0e7d40c7f20cc (diff)
parente45a7de109d710b86e9ab86fd5d10c6c6d27137b (diff)
Merge "fixed sonar issue in SvCLogicExprListener.java"
-rw-r--r--sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExprListener.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExprListener.java b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExprListener.java
index 2a40e7a1..e96b702e 100644
--- a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExprListener.java
+++ b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExprListener.java
@@ -5,6 +5,8 @@
* Copyright (C) 2017 AT&T Intellectual Property. All rights
* reserved.
* ================================================================================
+ * Modifications Copyright (C) 2018 IBM.
+ * ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@@ -55,7 +57,7 @@ public class SvcLogicExprListener extends ExprGrammarBaseListener
public SvcLogicExprListener()
{
- exprStack = new LinkedList<SvcLogicExpression>();
+ exprStack = new LinkedList<>();
}
public SvcLogicExpression getParsedExpr()