summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-11-18 22:06:03 +0000
committerPaul Phillips <paulp@improving.org>2009-11-18 22:06:03 +0000
commitae024cebd4a41339039f3df91c8aa4a02522594f (patch)
tree07c5e3a27ce4636f76eb73fe43353fc6c6aa0362 /src/library
parent536955e1afd68ac6f99f0347fa14a58ab47cb958 (diff)
downloadscala-ae024cebd4a41339039f3df91c8aa4a02522594f.tar.gz
scala-ae024cebd4a41339039f3df91c8aa4a02522594f.tar.bz2
scala-ae024cebd4a41339039f3df91c8aa4a02522594f.zip
Finally completed the incredibly tedious task o...
Finally completed the incredibly tedious task of removing the lower case primitive aliases from Predef. Had to rebuild msil.jar along the way.
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/Predef.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala
index 892e90d581..e37de9afac 100644
--- a/src/library/scala/Predef.scala
+++ b/src/library/scala/Predef.scala
@@ -25,17 +25,6 @@ object Predef extends LowPriorityImplicits {
*/
def classOf[T]: Class[T] = null
- // aliases ------------------------------------------------------------
- @deprecated("lower-case type aliases will be removed") type byte = scala.Byte
- @deprecated("lower-case type aliases will be removed") type short = scala.Short
- @deprecated("lower-case type aliases will be removed") type char = scala.Char
- @deprecated("lower-case type aliases will be removed") type int = scala.Int
- @deprecated("lower-case type aliases will be removed") type long = scala.Long
- @deprecated("lower-case type aliases will be removed") type float = scala.Float
- @deprecated("lower-case type aliases will be removed") type double = scala.Double
- @deprecated("lower-case type aliases will be removed") type boolean = scala.Boolean
- @deprecated("lower-case type aliases will be removed") type unit = scala.Unit
-
type String = java.lang.String
type Class[T] = java.lang.Class[T]