summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/runtime/RichShort.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/runtime/RichShort.scala')
-rw-r--r--src/dotnet-library/scala/runtime/RichShort.scala23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/dotnet-library/scala/runtime/RichShort.scala b/src/dotnet-library/scala/runtime/RichShort.scala
deleted file mode 100644
index 4615dec610..0000000000
--- a/src/dotnet-library/scala/runtime/RichShort.scala
+++ /dev/null
@@ -1,23 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2006, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id$
-
-
-package scala.runtime
-
-
-final class RichShort(x: Short) extends Proxy with Ordered[Short] {
-
- // Proxy.self
- def self: Any = x
-
- // Ordered[Short].compare
- def compare (y: Short): Int = if (x < y) -1 else if (x > y) 1 else 0
-
-}