summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/runtime/FloatRef.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/runtime/FloatRef.cs')
-rw-r--r--src/dotnet-library/scala/runtime/FloatRef.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/dotnet-library/scala/runtime/FloatRef.cs b/src/dotnet-library/scala/runtime/FloatRef.cs
deleted file mode 100644
index ee81ea3c9c..0000000000
--- a/src/dotnet-library/scala/runtime/FloatRef.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id$
-
-namespace scala.runtime {
-
- using System;
-
- [Serializable]
- public class FloatRef {
- public float elem;
- public FloatRef(float elem) { this.elem = elem; }
- override public string ToString() { return elem.ToString(); }
- }
-
-}