422ac236 by David LaPalomento

Remove comment

Get rid of a commented console.assert that had been replaced by a runtime conditional anyways.
1 parent 15bc2691
...@@ -32,7 +32,6 @@ window.videojs.hls.ExpGolomb = function(workingData) { ...@@ -32,7 +32,6 @@ window.videojs.hls.ExpGolomb = function(workingData) {
32 workingBytes = new Uint8Array(4), 32 workingBytes = new Uint8Array(4),
33 availableBytes = Math.min(4, workingBytesAvailable); 33 availableBytes = Math.min(4, workingBytesAvailable);
34 34
35 // console.assert(availableBytes > 0);
36 if (availableBytes === 0) { 35 if (availableBytes === 0) {
37 throw new Error('no bytes available'); 36 throw new Error('no bytes available');
38 } 37 }
......