updated Makefile.common
[org.ibex.core.git] / src / org / ibex / js / JSMath.java
index 816c3e8..32d730d 100644 (file)
@@ -3,10 +3,7 @@
 package org.ibex.js; 
 
 /** The JavaScript Math object */
-public class JSMath extends JS {
-
-    public static JSMath singleton = new JSMath();
-
+class JSMath extends JS {
     private static final JS E       = JS.N(java.lang.Math.E);
     private static final JS PI      = JS.N(java.lang.Math.PI);
     private static final JS LN10    = JS.N(java.lang.Math.log(10));