2003/10/16 09:08:27
[org.ibex.core.git] / src / org / xwt / Template.java
index 207f859..a180bf9 100644 (file)
@@ -355,8 +355,6 @@ public class Template {
             if (key.equals("static")) return myStatic;
             if (Box.SpecialBoxProperty.specialBoxProperties.get(key.toString()) != null) return getParentScope().get(key);
             if (super.has(key)) return super.get(key);
-            Object ret = xwt.rr.get(key);
-            if (ret != null) return ret;
             throw new JS.Exn("must declare " + key + " before using it!");
         }
         public void put(Object key, Object val) {