From: Sandeep J Date: Fri, 14 Dec 2018 13:36:56 +0000 (+0530) Subject: fixed sonar issue in SvcLogicExpression.java X-Git-Tag: 1.0.4~9^2~151^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=57be9d28ec29c029fc72e9fac13da98764252ece;p=ccsdk%2Fsli.git fixed sonar issue in SvcLogicExpression.java fixed sonar issue Issue-ID: CCSDK-525 Change-Id: Ie7d170334ea0c704bf67ee175ef3cd1932171418 Signed-off-by: Sandeep J --- diff --git a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExpression.java b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExpression.java index 26783e70f..81aeb6c37 100644 --- a/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExpression.java +++ b/sli/common/src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExpression.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 @@ -28,7 +30,7 @@ import java.util.List; public abstract class SvcLogicExpression implements Serializable { - private List operands = new LinkedList(); + private List operands = new LinkedList<>(); public void addOperand(SvcLogicExpression expr)