From f1954d9a3570572f5b79511c4eec7b6ceb7a9dd1 Mon Sep 17 00:00:00 2001 From: Iulian Dragos Date: Mon, 19 May 2008 15:30:17 +0000 Subject: Deprecated lower case type aliases for primitiv... Deprecated lower case type aliases for primitive types, #744. --- src/library/scala/Predef.scala | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/library') 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 java.lang.Integer instead */ @deprecated type Integer = java.lang.Integer -- cgit v1.2.3