Bug 8568: Remove deprecated MountProviderService APIs
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / compat / NotifyTask.java
index 345ec6218997bb0c57ac85dbda44024ac97f54fb..8bb27f9c8d73bbb6593cf16e988b9d45144ad745 100644 (file)
@@ -7,13 +7,12 @@
  */
 package org.opendaylight.controller.md.sal.binding.compat;
 
+import com.google.common.base.MoreObjects;
+import com.google.common.base.Preconditions;
 import org.opendaylight.yangtools.yang.binding.Notification;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import com.google.common.base.Objects;
-import com.google.common.base.Preconditions;
-
 class NotifyTask implements Runnable {
     private static final Logger LOG = LoggerFactory.getLogger(NotifyTask.class);
 
@@ -62,29 +61,36 @@ class NotifyTask implements Runnable {
 
     @Override
     public boolean equals(final Object obj) {
-        if (this == obj)
+        if (this == obj) {
             return true;
-        if (obj == null)
+        }
+        if (obj == null) {
             return false;
-        if (getClass() != obj.getClass())
+        }
+        if (getClass() != obj.getClass()) {
             return false;
-        NotifyTask other = (NotifyTask) obj;
+        }
+        final NotifyTask other = (NotifyTask) obj;
         if (registration == null) {
-            if (other.registration != null)
+            if (other.registration != null) {
                 return false;
-        } else if (!registration.equals(other.registration))
+            }
+        } else if (!registration.equals(other.registration)) {
             return false;
+        }
         if (notification == null) {
-            if (other.notification != null)
+            if (other.notification != null) {
                 return false;
-        } else if (!notification.equals(other.notification))
+            }
+        } else if (!notification.equals(other.notification)) {
             return false;
+        }
         return true;
     }
 
     @Override
     public String toString() {
-        return Objects.toStringHelper(this)
+        return MoreObjects.toStringHelper(this)
                 .add("listener", registration)
                 .add("notification", notification.getClass())
                 .toString();