From 57be9d28ec29c029fc72e9fac13da98764252ece Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Fri, 14 Dec 2018 19:06:56 +0530 Subject: fixed sonar issue in SvcLogicExpression.java fixed sonar issue Issue-ID: CCSDK-525 Change-Id: Ie7d170334ea0c704bf67ee175ef3cd1932171418 Signed-off-by: Sandeep J --- .../src/main/java/org/onap/ccsdk/sli/core/sli/SvcLogicExpression.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sli/common/src/main/java/org/onap') 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 26783e70..81aeb6c3 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) -- cgit 1.2.3-korg