Reduce visibility of codec methods
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Uint64StringCodec.java
index 098b1d5741f78f9528bb1b953213243b2d4e0007..dbd0e63958a902d2e473996e608f896fed023fb2 100644 (file)
@@ -22,7 +22,7 @@ final class Uint64StringCodec extends AbstractIntegerStringCodec<BigInteger, Uns
     }
 
     @Override
-    public BigInteger deserialize(final String stringRepresentation, final int base) {
+    BigInteger deserialize(final String stringRepresentation, final int base) {
         return new BigInteger(stringRepresentation, base);
     }
 
@@ -32,7 +32,7 @@ final class Uint64StringCodec extends AbstractIntegerStringCodec<BigInteger, Uns
     }
 
     @Override
-    protected BigInteger convertValue(final Number value) {
+    BigInteger convertValue(final Number value) {
         if (value instanceof BigInteger) {
             return (BigInteger) value;
         }