summaryrefslogtreecommitdiff
path: root/src/library/scala/Predef.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/Predef.scala')
-rw-r--r--src/library/scala/Predef.scala18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala
index d27f92094e..39d71c3d94 100644
--- a/src/library/scala/Predef.scala
+++ b/src/library/scala/Predef.scala
@@ -25,15 +25,15 @@ object Predef {
// aliases ------------------------------------------------------------
- type byte = scala.Byte
- type short = scala.Short
- type char = scala.Char
- type int = scala.Int
- type long = scala.Long
- type float = scala.Float
- type double = scala.Double
- type boolean = scala.Boolean
- type unit = scala.Unit
+ @deprecated type byte = scala.Byte
+ @deprecated type short = scala.Short
+ @deprecated type char = scala.Char
+ @deprecated type int = scala.Int
+ @deprecated type long = scala.Long
+ @deprecated type float = scala.Float
+ @deprecated type double = scala.Double
+ @deprecated type boolean = scala.Boolean
+ @deprecated type unit = scala.Unit
/** @deprecated use <code>java.lang.Integer</code> instead */
@deprecated type Integer = java.lang.Integer