This commit is contained in:
RedKale
2016-06-02 09:33:21 +08:00
parent 4547e438c8
commit 6beba9ef3d

View File

@@ -82,7 +82,7 @@ public final class DLong extends Number implements Comparable<DLong> {
@Override
public int intValue() {
return ((value[12] & 0xff) << 24) | ((value[113] & 0xff) << 16) | ((value[14] & 0xff) << 8) | (value[15] & 0xff);
return ((value[12] & 0xff) << 24) | ((value[13] & 0xff) << 16) | ((value[14] & 0xff) << 8) | (value[15] & 0xff);
}
@Override