Skip to content

Commit

Permalink
remove trace
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Jul 29, 2024
1 parent 7ba4c29 commit 22f7c5a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions haxe/ui/core/ItemRenderer.hx
Original file line number Diff line number Diff line change
Expand Up @@ -259,17 +259,13 @@ class ItemRenderer extends Box {
if (!isLayoutProp) {
try {
Reflect.setProperty(this, f, v);
} catch (e:Dynamic) {
trace(e);
}
} catch (e:Dynamic) { }
} else if (allowLayoutProperties) {
var layoutProp = StringUtil.uncapitalizeFirstLetter(f.substring("layout".length));
if (this.layout != null) {
try {
Reflect.setProperty(this.layout, layoutProp, v);
} catch (e:Dynamic) {
trace(e);
}
} catch (e:Dynamic) { }
}
}
}
Expand Down

0 comments on commit 22f7c5a

Please sign in to comment.