Skip to content

Commit 9d43ca8

Browse files
committed
🔇 Remove logs from ObjectProperty
1 parent 84ac22b commit 9d43ca8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/util/moddingTools.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ export class ObjectProperty extends Property<'object'> {
270270
}
271271

272272
copy(instance: any, target: any) {
273-
console.log('Copying', this.name)
274273
if (instance[this.name] == undefined) {
275274
target[this.name] = instance[this.name]
276275
} else {
@@ -279,7 +278,6 @@ export class ObjectProperty extends Property<'object'> {
279278
}
280279

281280
merge(instance: any, data: any) {
282-
console.log('Merging', this.name, instance[this.name], data[this.name])
283281
if (data[this.name] == undefined) {
284282
instance[this.name] = this.default
285283
} else {

0 commit comments

Comments
 (0)