mirror of
https://github.com/corda/corda.git
synced 2025-01-21 03:55:00 +00:00
Merge branch 'master' of dice:git/vm
This commit is contained in:
commit
df5a81a73c
@ -178,7 +178,7 @@ public class ByteBuffer {
|
|||||||
public long getLong() {
|
public long getLong() {
|
||||||
checkGet(8);
|
checkGet(8);
|
||||||
long l = (long)getInt() << 32;
|
long l = (long)getInt() << 32;
|
||||||
l |= (long)getInt() & 0xffffffff;
|
l |= (long)getInt() & 0xffffffffL;
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user