diff options
author | Dan Timoney <dtimoney@att.com> | 2018-12-11 17:37:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-11 17:37:40 +0000 |
commit | a070cc634b5c8b6451e6825c0726a1aa9d41857a (patch) | |
tree | 3573a1c12e05b18af8f15ea94bf99e7cf605a238 /ms | |
parent | 6b3260a2d9f7b9f9980a58d17b91262adbacc3dd (diff) | |
parent | f915710ac0488719295f8b43321619fb8a2e5589 (diff) |
Merge "fixed sonar issue in AssignVlanTagRequest"
Diffstat (limited to 'ms')
-rw-r--r-- | ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/AssignVlanTagRequest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/AssignVlanTagRequest.java b/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/AssignVlanTagRequest.java index 4b7a7146..79c58188 100644 --- a/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/AssignVlanTagRequest.java +++ b/ms/vlantag-api/src/main/java/org/onap/ccsdk/apps/ms/vlantagapi/core/model/AssignVlanTagRequest.java @@ -1,5 +1,6 @@ /*******************************************************************************
* Copyright © 2017-2018 AT&T Intellectual Property.
+ * Modifications Copyright © 2017-2018 AT&T Intellectual Property.
*
* 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 AssignVlanTagRequest {
- private @Valid List<AssignVlanTagRequestInput> input = new ArrayList<AssignVlanTagRequestInput>();
+ private @Valid List<AssignVlanTagRequestInput> input = new ArrayList<>();
/**
**/
|