removed debug logs

This commit is contained in:
mrjvs 2021-10-25 22:30:02 +02:00
parent 17b4a4b790
commit d64be18cfa
1 changed files with 0 additions and 2 deletions

View File

@ -20,7 +20,6 @@ function buildStoreObject(d) {
else { else {
version = (version+1).toString() version = (version+1).toString()
} }
console.log(this, version);
// check if version exists // check if version exists
if (!this.versions[version]) { if (!this.versions[version]) {
@ -31,7 +30,6 @@ function buildStoreObject(d) {
// update object // update object
obj = this.versions[version].update(obj); obj = this.versions[version].update(obj);
console.log(obj);
} }
// if resulting obj is null, use latest version as init object // if resulting obj is null, use latest version as init object