summaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-11 17:38:19 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-11 17:38:19 +0000
commit30e7b10faff0c774c7ff4f5636cea6c7ed526d72 (patch)
tree6784fe765cc963ccee439806957769c013d6a903 /ms/vlantag-api
parent4836b1ed3ebfa56b45f6f08951204b0a5d5187b5 (diff)
parent6aeeb47a5f45123daee3dee67320a649bed2d5aa (diff)
Merge "fixed sonar issue in UnassignVlanTagRequest"
Diffstat (limited to 'ms/vlantag-api')
-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<>();
/**
**/