From: Ed Warnicke Date: Mon, 10 Feb 2014 23:36:04 +0000 (+0000) Subject: Merge "Fix a few eclipse-reported warnings" X-Git-Tag: autorelease-tag-v20140601202136_82eb3f9~495 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=509a8a4d570abc3a9a496837617015b1084c2761 Merge "Fix a few eclipse-reported warnings" --- 509a8a4d570abc3a9a496837617015b1084c2761 diff --cc opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/RpcProviderRegistryImpl.java index a5da8a0cb1,6844e3845b..e98d5b9942 --- a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/RpcProviderRegistryImpl.java +++ b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/RpcProviderRegistryImpl.java @@@ -148,10 -150,10 +147,10 @@@ public class RpcProviderRegistryImpl im LOG.error("Unhandled exception during invoking listener {}", e); } } - + } - private void notifyListenersRoutedCreated(RpcRouter router) { + private void notifyListenersRoutedCreated(RpcRouter router) { for (ListenerRegistration listener : routerInstantiationListener) { try { diff --cc opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/sal/common/util/Rpcs.java index f7fc714025,5565d8b56d..f303941871 --- a/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/sal/common/util/Rpcs.java +++ b/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/sal/common/util/Rpcs.java @@@ -32,9 -34,9 +32,9 @@@ public class Rpcs public static RpcResult getRpcResult(boolean successful, Collection errors) { return new RpcResultTO(successful, null, errors); } - + private static class RpcResultTO implements RpcResult, Serializable, Immutable { - + private static final long serialVersionUID = 1L; private final Collection errors; private final T result; private final boolean successful;