2003/06/18 07:39:21
[org.ibex.core.git] / src / org / xwt / js / ArrayImpl.java
index c4e4bf6..40bc873 100644 (file)
@@ -38,7 +38,7 @@ class ArrayImpl extends JS.Obj {
         }
     }
     // we use _put instead of put solely to work around a GCJ bug
-    public void put(Object key, Object val) {
+    public void _put(Object key, Object val) {
         if (key.equals("length")) vec.setSize(toNumber(val).intValue());
         int i = intVal(key);
         if (i == Integer.MIN_VALUE) super.put(key, val);