aboutsummaryrefslogtreecommitdiffstats
path: root/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-11 15:27:29 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-11 15:27:29 +0000
commit6abaa682a8a4b88b0a731a56fa7f5fd738919053 (patch)
treefa5e21789ea9f7d504d2ee197af08a89af9ab278 /sli/common/src/main/java/org/onap/ccsdk/sli/core/sli
parenta84ac351523902e35ed0bc47778306855c469bf9 (diff)
parentd43c10e65a6e12da041f0b47f26a3e28e0d0fa5a (diff)
Merge "fixed sonar issue in SvcLogicBinaryExpression"
Diffstat (limited to 'sli/common/src/main/java/org/onap/ccsdk/sli/core/sli')
-rw-r--r--sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicBinaryExpression.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicBinaryExpression.java b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicBinaryExpression.java
index 45458e8d..a990dd95 100644
--- a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicBinaryExpression.java
+++ b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicBinaryExpression.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
@@ -81,7 +83,7 @@ public class SvcLogicBinaryExpression extends SvcLogicExpression {
public SvcLogicBinaryExpression()
{
- operators = new LinkedList<OperatorType>();
+ operators = new LinkedList<>();
}
public void addOperator(String operator)