bug fixes
[org.ibex.js.git] / src / org / ibex / js / JSNumber.java
index 8137cbc..a2a6cea 100644 (file)
@@ -1,7 +1,11 @@
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the Apache Public Source License 2.0 ("the License").
+// You may not use this file except in compliance with the License.
+
 package org.ibex.js;
 
 abstract class JSNumber extends JSPrimitive {
-    boolean jsequals(JS o) {
+    public boolean equals(Object o) {
         if(o == this) return true;
         if(o instanceof JSNumber) {
             JSNumber n = (JSNumber) o;