fixed sonar issue in QueryNetworkNotifier.java 57/64257/1
authorSandeep J <sandeejh@in.ibm.com>
Mon, 3 Sep 2018 13:37:54 +0000 (19:07 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Mon, 3 Sep 2018 13:38:04 +0000 (19:08 +0530)
fixed sonar issue as detailed in SO-955

Issue-ID: SO-955
Change-Id: Ieed7029b8d8e437e48392eafa51a774792ba539c
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;
         }