Merge "Fix a few eclipse-reported warnings"
authorEd Warnicke <eaw@cisco.com>
Mon, 10 Feb 2014 23:36:04 +0000 (23:36 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 10 Feb 2014 23:36:04 +0000 (23:36 +0000)
1  2 
opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/RpcProviderRegistryImpl.java
opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/sal/common/util/Rpcs.java

index a5da8a0cb14a329e6e22b1129f560db1c6de27c2,6844e3845bd03167d8f667d1f3a824d79a071f2a..e98d5b9942c86afb9b76e006662fe02cdf6147c2
@@@ -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<RouterInstantiationListener> listener : routerInstantiationListener) {
              try {
index f7fc7140251e00eeda5eea904c97074278d15960,5565d8b56d3b890058a7ab2d54a345e3c42171c7..f30394187125153004e9b5c3a1b4d4cb2cc74886
@@@ -32,9 -34,9 +32,9 @@@ public class Rpcs 
      public static <T> RpcResult<T> getRpcResult(boolean successful, Collection<RpcError> errors) {
          return new RpcResultTO<T>(successful, null, errors);
      }
 -    
 +
      private static class RpcResultTO<T> implements RpcResult<T>, Serializable, Immutable {
+         private static final long serialVersionUID = 1L;
          private final Collection<RpcError> errors;
          private final T result;
          private final boolean successful;