summaryrefslogtreecommitdiff
path: root/src/reflect
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-10-08 16:10:34 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-10-08 16:10:34 +0200
commit49dcb8ff33483949cecce671a2d87676cefa457f (patch)
tree03670c298a29dc9cccc228d094153d74646114a6 /src/reflect
parent112e922acdce5d2b1a102be95c211abcb5c0b59d (diff)
downloadscala-49dcb8ff33483949cecce671a2d87676cefa457f.tar.gz
scala-49dcb8ff33483949cecce671a2d87676cefa457f.tar.bz2
scala-49dcb8ff33483949cecce671a2d87676cefa457f.zip
removes strongly-typed Constant.value wrappers
These are surely not necessary. Thanks Vlad!
Diffstat (limited to 'src/reflect')
-rw-r--r--src/reflect/scala/reflect/api/Constants.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/reflect/scala/reflect/api/Constants.scala b/src/reflect/scala/reflect/api/Constants.scala
index 0bb64b3b12..2f201d033d 100644
--- a/src/reflect/scala/reflect/api/Constants.scala
+++ b/src/reflect/scala/reflect/api/Constants.scala
@@ -37,17 +37,5 @@ trait Constants {
abstract class ConstantApi {
val value: Any
def tpe: Type
-
- def booleanValue: Boolean
- def byteValue: Byte
- def shortValue: Short
- def charValue: Char
- def intValue: Int
- def longValue: Long
- def floatValue: Float
- def doubleValue: Double
- def stringValue: String
- def typeValue: Type
- def symbolValue: Symbol
}
}