bugfix
[org.ibex.js.git] / src / org / ibex / js / JSNumber.java
index 836c5e7..f5ae5be 100644 (file)
@@ -4,8 +4,8 @@
 
 package org.ibex.js;
 
-abstract class JSNumber extends JSPrimitive {
-    boolean jsequals(JS o) {
+public abstract class JSNumber extends JSPrimitive {
+    public boolean equals(Object o) {
         if(o == this) return true;
         if(o instanceof JSNumber) {
             JSNumber n = (JSNumber) o;