fixed sonar major isue in QueryNetworkNotification 91/64391/1
authorSandeep J <sandeejh@in.ibm.com>
Tue, 4 Sep 2018 10:06:03 +0000 (15:36 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Tue, 4 Sep 2018 10:06:09 +0000 (15:36 +0530)
fixed sonar major issue as detailed in SO-969

Issue-ID: SO-969
Change-Id: Ifdd59b780db24fa1e06181495dbc10e4bb1c6b6c
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
adapters/mso-openstack-adapters/src/main/java/org/onap/so/adapters/network/async/client/QueryNetworkNotification.java

index 55a8e3d..87aa218 100644 (file)
@@ -4,6 +4,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
@@ -314,7 +316,7 @@ public class QueryNetworkNotification {
      */
     public List<Integer> getVlans() {
         if (vlans == null) {
-            vlans = new ArrayList<Integer>();
+            vlans = new ArrayList<>();
         }
         return this.vlans;
     }
@@ -406,7 +408,7 @@ public class QueryNetworkNotification {
          */
         public List<QueryNetworkNotification.SubnetIdMap.Entry> getEntry() {
             if (entry == null) {
-                entry = new ArrayList<QueryNetworkNotification.SubnetIdMap.Entry>();
+                entry = new ArrayList<>();
             }
             return this.entry;
         }