From: megacz Date: Fri, 30 Jan 2004 07:02:00 +0000 (+0000) Subject: 2003/06/18 07:39:21 X-Git-Tag: RC3~850 X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=32473bd956f9bca69cfa7f860d65e4e2b439046f 2003/06/18 07:39:21 darcs-hash:20040130070200-2ba56-c8405cb3a8234e234b4b6ecca5e8d42c2a005178.gz --- diff --git a/Makefile b/Makefile index 300f032..c55a2db 100644 --- a/Makefile +++ b/Makefile @@ -161,10 +161,6 @@ $(java_headers): bin/%.h: bin/%.class sed s_/_._g | sed s/.class$$// | sed s/.java$$// |\ xargs $(gcjh) --classpath . -bin-$(platform)/org/xwt/js/CompiledFunctionImpl.java.o: src/org/xwt/js/CompiledFunctionImpl.java - touch $@ -# $(gcj) -c bin/org/xwt/js/CompiledFunctionImpl*.class -o $@ - $(java_objects): bin-$(platform)/%.java.o: src/%.java @echo "compiling .java -> .o: $<" mkdir -p `dirname $@` diff --git a/src/org/xwt/js/ArrayImpl.java b/src/org/xwt/js/ArrayImpl.java index c4e4bf6..40bc873 100644 --- a/src/org/xwt/js/ArrayImpl.java +++ b/src/org/xwt/js/ArrayImpl.java @@ -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);