Merge changes Id6a27004,I7baa722d
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / Int64.java
index 5f4202254786df35c1a3c22609bdf50c7e78eb17..892a1436ee37441dc6d180b0b51cefa5c8b9b2b3 100644 (file)
@@ -22,7 +22,7 @@ public final class Int64 extends AbstractSignedInteger {
     private static final String DESCRIPTION = "int64  represents integer values between -9223372036854775808 and 9223372036854775807, inclusively.";
 
     private Int64() {
-        super(NAME, DESCRIPTION, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
+        super(NAME, DESCRIPTION, Long.MIN_VALUE, Long.MAX_VALUE, "");
     }
 
     public static Int64 getInstance() {