summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-02-18 10:20:03 +0100
committerEugene Burmako <xeno.by@gmail.com>2014-02-18 10:20:03 +0100
commit1714578eb8b4526de248c5a62e9aa175c5758b7c (patch)
treee0d246aa9f2aff04ea63d2571edf99880101eb65
parent347fa24ab11122f260e858fbe1374751046b484c (diff)
downloadscala-1714578eb8b4526de248c5a62e9aa175c5758b7c.tar.gz
scala-1714578eb8b4526de248c5a62e9aa175c5758b7c.tar.bz2
scala-1714578eb8b4526de248c5a62e9aa175c5758b7c.zip
undeprecates typeSignature and typeSignatureIn
As per Jason's feedback, these are now undeprecated, being aliases for info and infoIn. I haven't touched the newly introduced setInfo family of methods, because I think that on internal level we don't need setTypeSignature anyway.
-rw-r--r--src/reflect/scala/reflect/api/Symbols.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/reflect/scala/reflect/api/Symbols.scala b/src/reflect/scala/reflect/api/Symbols.scala
index cdab1bb521..a5a50f1088 100644
--- a/src/reflect/scala/reflect/api/Symbols.scala
+++ b/src/reflect/scala/reflect/api/Symbols.scala
@@ -309,7 +309,6 @@ trait Symbols { self: Universe =>
def companion: Symbol
/** @see [[infoIn]] */
- @deprecated("Use `infoIn` instead", "2.11.0")
def typeSignatureIn(site: Type): Type
/** The type signature of this symbol seen as a member of given type `site`.
@@ -319,7 +318,6 @@ trait Symbols { self: Universe =>
def infoIn(site: Type): Type
/** @see [[info]] */
- @deprecated("Use `info` instead", "2.11.0")
def typeSignature: Type
/** The type signature of this symbol.