From: adam Date: Sat, 10 Apr 2004 12:29:25 +0000 (+0000) Subject: backed out one optimization X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=31019e2c41b5fab3cac37d0583fd0a2e5bd18adf backed out one optimization darcs-hash:20040410122925-5007d-2dbe730aa75d5db3676e90c9e31e90c26608184c.gz --- diff --git a/src/org/ibex/Box.java b/src/org/ibex/Box.java index b3f5fd4..9dcb020 100644 --- a/src/org/ibex/Box.java +++ b/src/org/ibex/Box.java @@ -250,7 +250,7 @@ public final class Box extends JSScope implements Scheduler.Task { who.dirty(thisx+min(this.width,width), thisy, Math.abs(width-this.width), max(this.height, height)); who.dirty(thisx, thisy+min(this.height,height), min(this.width, width), Math.abs(height-this.height)); } - return; + //return; } (parent == null ? this : parent).dirty(thisx, thisy, this.width, this.height); this.width = width; this.height = height; this.x = x; this.y = y;