Skip to content

Commit 53f7ab0

Browse files
committed
Remove debug output
1 parent f89bde0 commit 53f7ab0

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

scripts/JSRootIOEvolution.js

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -472,26 +472,12 @@
472472

473473
if (streamer !== null) {
474474

475-
var debug = (classname == "TXmlEx1");
476-
477-
if (debug) {
478-
console.log('Before read version', classname, 'pos', this.o, this.length);
479-
for (var i=0;i<36;++i) console.log(i, 'code', this.codeAt(i));
480-
}
481475
var ver = this.ReadVersion();
482476

483-
if (debug)
484-
console.log('Read version', classname, ver, 'pos', this.o, this.length);
485-
486-
for (var n = 0; n < streamer.length; ++n) {
487-
if (debug) console.log('Read member', streamer[n].name, 'pos', this.o);
477+
for (var n = 0; n < streamer.length; ++n)
488478
streamer[n].func(this, obj);
489-
}
490-
491-
if (debug) console.log('Check bytecount pos', this.o);
492479

493480
this.CheckBytecount(ver, classname);
494-
// methods will be assigned by last entry in the streamer
495481

496482
}
497483
else if (classname == 'TQObject') {

0 commit comments

Comments
 (0)