Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / util / delta / PropertyDelta.java
index 3f4da75..98296d3 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-package org.onap.aai.util.delta;
 
-import org.apache.commons.lang3.builder.ToStringBuilder;
+package org.onap.aai.util.delta;
 
 import com.google.gson.annotations.SerializedName;
 
+import org.apache.commons.lang3.builder.ToStringBuilder;
+
 public class PropertyDelta {
 
     @SerializedName("action")
@@ -34,7 +35,6 @@ public class PropertyDelta {
     @SerializedName("old-value")
     private Object oldValue;
 
-
     public PropertyDelta(DeltaAction action, Object value) {
         this.action = action;
         this.value = value;
@@ -71,10 +71,7 @@ public class PropertyDelta {
 
     @Override
     public String toString() {
-        return new ToStringBuilder(this)
-            .append("action", action)
-            .append("value", value)
-            .append("oldValue", oldValue)
-            .toString();
+        return new ToStringBuilder(this).append("action", action).append("value", value).append("oldValue", oldValue)
+                .toString();
     }
 }