2003/06/07 12:00:57
[org.ibex.core.git] / src / org / xwt / Trap.java
index 8d9404e..c0dd670 100644 (file)
@@ -123,15 +123,6 @@ public class Trap {
         public Object _call(JS.Array args) { return _call(args, JS.getCurrentFunction()); }
         public Object _call(JS.Array args, Function currentFunction) {
             Trap currentTrap = TrapContext.get().currentTrap;
-           /*
-            if (currentTrap == null || (currentFunction != currentTrap.f)) {
-                if (Log.on) Log.log(this, "attempt to cascade() by a function that was not invoked as a trap at " +
-                                   currentFunction.getSourceName());
-                if (Log.on) Log.log(this, "currentfunction == " + currentFunction);
-                if (Log.on) Log.log(this, "currentTrap.f == " + currentTrap.f);
-                return null;
-            }
-           */
             if (args.length() != 0) TrapContext.get().putCascadeHappened = true;
             Trap t = currentTrap.next;
             // if we've hit the end of the trap stack, just do a put(,,,true)