Replace "const" with "var" because it does not seem to be standard enough for Netbeans

This commit is contained in:
mossroy 2013-06-28 23:17:57 +02:00
parent cb801bafa4
commit 2aea085dcc

View File

@ -5,7 +5,7 @@ define(function(require) {
var bzip2 = require('bzip2'); var bzip2 = require('bzip2');
// Size of chunks read in the dump files : 128 KB // Size of chunks read in the dump files : 128 KB
const CHUNK_SIZE = 131072; var CHUNK_SIZE = 131072;
/** /**
* Read an integer encoded in 4 bytes * Read an integer encoded in 4 bytes