aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-12-11 18:11:18 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-12-11 18:11:24 +0530
commit6aeeb47a5f45123daee3dee67320a649bed2d5aa (patch)
tree7ec31118b4ad19121984c94d0c4e4ef777e626ad
parent02f6311c1233b7473dd2fa0345b301cf5e0885ad (diff)
fixed sonar issue in UnassignVlanTagRequest
fixed sonar issue Issue-ID: CCSDK-552 Change-Id: Ieedb5bcbc360477d19b4b3a7c73369e400eac76f Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
-rw-r--r--ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagRequest.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/UnassignVlanTagRequest.java b/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagRequest.java
index aa2f0ef9..8613c70f 100644
--- a/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagRequest.java
+++ b/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/UnassignVlanTagRequest.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.
@@ -33,7 +34,7 @@ import io.swagger.annotations.ApiModelProperty;
*/
public class UnassignVlanTagRequest {
- private @Valid List<UnassignVlanTagRequestInput> input = new ArrayList<UnassignVlanTagRequestInput>();
+ private @Valid List<UnassignVlanTagRequestInput> input = new ArrayList<>();
/**
**/