X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Fcompat%2FNotifyTask.java;h=59be9af829df707d51cbffa2568ebf0fcca8711b;hb=ed940fc416097e519428eaa3bba9e0d7d126b8cf;hp=345ec6218997bb0c57ac85dbda44024ac97f54fb;hpb=9fb1df14f2dc885fee1dce821b753cc99af6e54f;p=controller.git 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..59be9af829 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.Objects; +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,23 +61,30 @@ 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; }