moved ProxyAutoConfig.java from org.ibex.net.HTTP to this package
[org.ibex.js.git] / src / org / ibex / js / JSString.java
index 2e40da8..becea4e 100644 (file)
@@ -7,12 +7,12 @@ package org.ibex.js;
 import org.ibex.util.*;
 import java.util.*;
 
-class JSString extends JSPrimitive {
+public class JSString extends JSPrimitive {
     final String s;
     public JSString(String s) { this.s = s; }
     public int hashCode() { return s.hashCode(); }
     
-    public boolean jsequals(JS o) {
+    public boolean equals(Object o) {
         if(o == this) return true;
         if(o instanceof JSString) {
             return ((JSString)o).s.equals(s);