summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cldc-library/scala/runtime/BoxesRunTime.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cldc-library/scala/runtime/BoxesRunTime.java b/src/cldc-library/scala/runtime/BoxesRunTime.java
index 9374f6bce6..bab4c63524 100644
--- a/src/cldc-library/scala/runtime/BoxesRunTime.java
+++ b/src/cldc-library/scala/runtime/BoxesRunTime.java
@@ -150,14 +150,6 @@ public class BoxesRunTime {
return l == null ? 0 : ((Long)l).longValue();
}
- public static float unboxToFloat(Object f) {
- return f == null ? 0.0f : ((Float)f).floatValue();
- }
-
- public static double unboxToDouble(Object d) {
- return d == null ? 0.0d : ((Double)d).doubleValue();
- }
-
/*
public static boolean unboxToBoolean(Object b) {
if (b == null)