update core for recent js changes
[org.ibex.core.git] / src / org / ibex / net / SOAP.java
index fbbb9bc..d54ebce 100644 (file)
@@ -67,7 +67,7 @@ public class SOAP extends XMLRPC {
                     objects.addElement(null);
                 } else if (value.endsWith("arrayType") || value.endsWith("JSArray") || key.endsWith("arrayType")) {
                     objects.removeElementAt(objects.size() - 1);
-                    objects.addElement(JS.newArray());
+                    objects.addElement(new JSArray());
                 }
             }
         }
@@ -164,7 +164,7 @@ public class SOAP extends XMLRPC {
 
     /** Appends the SOAP representation of <code>o</code> to <code>sb</code> */
     void appendObject(String name, JS o, StringBuffer sb) throws JSExn {
-        // FIXME: Update for new api
+        // JS:FIXME: Update for new api
         /*
         if (o instanceof Number) {
             if ((double)((Number)o).intValue() == ((Number)o).doubleValue()) {