Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-els-onap-logging / src / main / java / org / onap / aai / domain / restResponseInfo / Info.java
index 268b767..3685e5a 100644 (file)
 
 package org.onap.aai.domain.restResponseInfo;
 
-import javax.xml.bind.annotation.*;
 import java.util.ArrayList;
 import java.util.List;
 
+import javax.xml.bind.annotation.*;
+
 /**
  * <p>
  * Java class for anonymous complex type.
@@ -188,7 +189,7 @@ public class Info {
          */
         public List<ResponseMessage> getResponseMessage() {
             if (responseMessage == null) {
-                responseMessage = new ArrayList<ResponseMessage>();
+                responseMessage = new ArrayList<>();
             }
             return this.responseMessage;
         }
@@ -361,7 +362,7 @@ public class Info {
                  */
                 public List<String> getVariable() {
                     if (variable == null) {
-                        variable = new ArrayList<String>();
+                        variable = new ArrayList<>();
                     }
                     return this.variable;
                 }