BUG-865: remove TypeDefinitionAwareCodec nested classes
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Int64StringCodec.java
index 8635a9a0873bd6b7404a76633e4c10c6bdb13509..30955f22cb2176e9a3f506d4b3312060e08d1b66 100644 (file)
@@ -12,19 +12,19 @@ import com.google.common.base.Optional;
 import org.opendaylight.yangtools.yang.data.api.codec.Int64Codec;
 import org.opendaylight.yangtools.yang.model.api.type.IntegerTypeDefinition;
 
-class Int64StringCodec extends AbstractIntegerStringCodec<Long, IntegerTypeDefinition> implements Int64Codec<String> {
+final class Int64StringCodec extends AbstractIntegerStringCodec<Long, IntegerTypeDefinition> implements Int64Codec<String> {
 
-    protected Int64StringCodec(final Optional<IntegerTypeDefinition> typeDef) {
+    Int64StringCodec(final Optional<IntegerTypeDefinition> typeDef) {
         super(typeDef, extractRange(typeDef.orNull()), Long.class);
     }
 
     @Override
-    public final Long deserialize(final String stringRepresentation, final int base) {
+    public Long deserialize(final String stringRepresentation, final int base) {
         return Long.valueOf(stringRepresentation, base);
     }
 
     @Override
-    public final String serialize(final Long data) {
+    public String serialize(final Long data) {
         return data == null ? "" : data.toString();
     }