Move this variable to comply with Java Code Conventions 75/94075/3
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Thu, 22 Aug 2019 07:30:57 +0000 (13:00 +0530)
committerIttay Stern <ittay.stern@att.com>
Thu, 22 Aug 2019 16:48:45 +0000 (16:48 +0000)
Move this variable to comply with Java Code Conventions

Issue-ID: VID-561
Change-Id: Ibf8099258145a2ae591cd0acce9bbe75b592eccd
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
vid-app-common/src/main/java/org/onap/vid/mso/rest/TaskList.java

index 90e3a21..cfde4c9 100644 (file)
@@ -3,6 +3,7 @@
  * VID
  * ================================================================================
  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -23,6 +24,8 @@ package org.onap.vid.mso.rest;
 import java.util.List;
 
 public class TaskList {
+       
+    private List<Task> taskList;
 
     public List<Task> getTaskList() {
         return taskList;
@@ -32,5 +35,4 @@ public class TaskList {
         this.taskList = taskList;
     }
 
-    private List<Task> taskList;
 }