diff options
author | Dan Timoney <dtimoney@att.com> | 2018-12-11 15:27:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-11 15:27:29 +0000 |
commit | 6abaa682a8a4b88b0a731a56fa7f5fd738919053 (patch) | |
tree | fa5e21789ea9f7d504d2ee197af08a89af9ab278 | |
parent | a84ac351523902e35ed0bc47778306855c469bf9 (diff) | |
parent | d43c10e65a6e12da041f0b47f26a3e28e0d0fa5a (diff) |
Merge "fixed sonar issue in SvcLogicBinaryExpression"
-rw-r--r-- | sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicBinaryExpression.java | 4 |
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) |