aboutsummaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-12-11 18:14:39 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-12-11 18:15:07 +0530
commitf811f19ec00c7cbde038a8708c803f5f08278525 (patch)
tree8ea763e6e23ed48f3f8e2026875e726cde72d103 /ms/vlantag-api
parent02f6311c1233b7473dd2fa0345b301cf5e0885ad (diff)
fixed sonar Issue in UnassignVlanTagResponse
fixed sonar issue Issue-ID: CCSDK-552 Change-Id: I72d4a96a8eddcb146eb1904ba9d6031ec6a3b940 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'ms/vlantag-api')
-rw-r--r--ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagResponse.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagResponse.java b/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagResponse.java
index 2bc95daa..4d2f1a51 100644
--- a/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagResponse.java
+++ b/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagResponse.java
@@ -1,5 +1,6 @@
/*******************************************************************************
* Copyright © 2017-2018 AT&T Intellectual Property.
+ * Modifications Copyright © 2018 IBM.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -32,7 +33,7 @@ import io.swagger.annotations.ApiModelProperty;
* @version 1.0
*/
public class UnassignVlanTagResponse {
- private @Valid List<UnassignVlanTagResponseOutput> output = new ArrayList<UnassignVlanTagResponseOutput>();
+ private @Valid List<UnassignVlanTagResponseOutput> output = new ArrayList<>();
private @Valid Integer errorCode = null;
private @Valid String errorMessage = null;