1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 17:48:07 +02:00

rename getUint32 to getInt32 and collect readInt*() in util.js

This commit is contained in:
fkaelberer 2014-04-16 21:31:16 +02:00
parent b33f4adf88
commit b06c10cbbd
6 changed files with 50 additions and 72 deletions

View file

@ -148,7 +148,7 @@ var ChunkedStream = (function ChunkedStreamClosure() {
return (b0 << 8) + b1;
},
getUint32: function ChunkedStream_getUint32() {
getInt32: function ChunkedStream_getInt32() {
var b0 = this.getByte();
var b1 = this.getByte();
var b2 = this.getByte();