From: Sandeep J Date: Fri, 7 Dec 2018 10:36:55 +0000 (+0530) Subject: fixed sonar issue in SvcLogicBinaryExpression X-Git-Tag: 1.0.4~9^2~163^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=d43c10e65a6e12da041f0b47f26a3e28e0d0fa5a;p=ccsdk%2Fsli.git fixed sonar issue in SvcLogicBinaryExpression fixed sonar issue Issue-ID: CCSDK-525 Change-Id: Iea683bb51d07daa0f7f3b48b4c83642a427edfbd Signed-off-by: Sandeep J --- 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 45458e8d6..a990dd950 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(); + operators = new LinkedList<>(); } public void addOperator(String operator)