Fix checkstyle reported by odlparent-3.0.0
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / persisted / AbstractIdentifiablePayload.java
index 4692236532d4829f9a7e19d9ac9ca3abda334ff0..b0ad960cb84af19642cdd8571ee48ba6b5fbe684 100644 (file)
@@ -63,6 +63,7 @@ public abstract class AbstractIdentifiablePayload<T extends Identifier>
         protected abstract T readIdentifier(@Nonnull DataInput in) throws IOException;
 
         @Nonnull
+        @SuppressWarnings("checkstyle:hiddenField")
         protected abstract Identifiable<T> createObject(@Nonnull T identifier, @Nonnull byte[] serialized);
     }
 
@@ -90,5 +91,6 @@ public abstract class AbstractIdentifiablePayload<T extends Identifier>
     }
 
     @Nonnull
+    @SuppressWarnings("checkstyle:hiddenField")
     protected abstract AbstractProxy<T> externalizableProxy(@Nonnull byte[] serialized);
 }