2003/09/24 07:33:32
[org.ibex.core.git] / src / org / xwt / js / ArrayImpl.java
index f76e29a..84b33d1 100644 (file)
@@ -5,8 +5,6 @@ import org.xwt.util.*;
 import java.io.*;
 import java.util.*;
 
-// FIXME: could use some cleaning up...
-
 /** A JavaScript Array */
 class ArrayImpl extends JS.Obj {
     private Vec vec = new Vec();
@@ -47,7 +45,7 @@ class ArrayImpl extends JS.Obj {
         }
         if(method.equals("unshift")) {
             if(justChecking) return Boolean.TRUE;
-            // FIXME: could be optimized a bit with some help from Vec
+            // FEATURE: could be optimized a bit with some help from Vec
             for(int i=0;i<args.length();i++)
                 vec.insertElementAt(args.elementAt(i),i);
             return new Integer(vec.size());