Fix findbugs violations in md-sal - part 1
[controller.git] / opendaylight / md-sal / sal-common-util / src / main / java / org / opendaylight / controller / sal / common / util / Rpcs.java
index 7bb8c25e3ded1e6d10043c053724368f7b5e1875..3278cef19844ae4e62c9a9e02c7b18a472757614 100644 (file)
@@ -8,7 +8,6 @@
 package org.opendaylight.controller.sal.common.util;
 
 import com.google.common.collect.ImmutableList;
-import java.io.Serializable;
 import java.util.Collection;
 import org.opendaylight.yangtools.concepts.Immutable;
 import org.opendaylight.yangtools.yang.common.RpcError;
@@ -37,8 +36,7 @@ public final class Rpcs {
         return new RpcResultTO<>(successful, null, errors);
     }
 
-    private static class RpcResultTO<T> implements RpcResult<T>, Serializable, Immutable {
-        private static final long serialVersionUID = 1L;
+    private static class RpcResultTO<T> implements RpcResult<T>, Immutable {
         private final Collection<RpcError> errors;
         private final T result;
         private final boolean successful;