fix static fields that were being accessed non-statically
[org.ibex.core.git] / src / org / ibex / Template.java
index 00e580a..edd9334 100644 (file)
@@ -61,12 +61,12 @@ public class Template {
         try {
             apply(b, null);
         } catch (IOException e) {
-            b.clear(b.VISIBLE);
+            b.clear(Box.VISIBLE);
             b.mark_for_repack();
             Log.warn(this, e);
             throw new JSExn(e.toString());
         } catch (JSExn e) {
-            b.clear(b.VISIBLE);
+            b.clear(Box.VISIBLE);
             b.mark_for_repack();
             Log.warn(this, e);
             throw e;