Read uints directly into longs.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1853 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
ce38fa7c81
commit
839c5d66bc
|
|
@ -89,7 +89,7 @@ public class UnsignedIntPackedInputStream {
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
while(i < length)
|
while(i < length)
|
||||||
data[offset+i++] = readBuffer.getInt();
|
data[offset+i++] = readBuffer.getInt() & 0xFFFFFFFFL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue