X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Fcompat%2FNotifyTask.java;h=8bb27f9c8d73bbb6593cf16e988b9d45144ad745;hp=345ec6218997bb0c57ac85dbda44024ac97f54fb;hb=e294b955eb9f5d2111ff09a56a1e8caf3533403b;hpb=608760751ce7fcf4e84e86a8b33d43bc1d9984d6 diff --git a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/md/sal/binding/compat/NotifyTask.java b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/md/sal/binding/compat/NotifyTask.java index 345ec62189..8bb27f9c8d 100644 --- a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/md/sal/binding/compat/NotifyTask.java +++ b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/md/sal/binding/compat/NotifyTask.java @@ -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();