Remove stray comment

This commit is contained in:
Eric Rosenbaum 2019-01-08 12:40:32 -05:00
parent db1c89fa34
commit 195be39c6e

View file

@ -150,7 +150,6 @@ class ArrayBufferStream {
* @return {number} the next 32 bit integer in the stream * @return {number} the next 32 bit integer in the stream
*/ */
readInt32 () { readInt32 () {
// const sliced = this.arrayBuffer.slice
let val; let val;
if (this._position % 4 === 0) { if (this._position % 4 === 0) {
val = new Int32Array(this.arrayBuffer, this._position, 1)[0]; val = new Int32Array(this.arrayBuffer, this._position, 1)[0];