summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-09-14 12:59:46 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-09-14 13:29:49 +0200
commitb2864f8bf3b9dd27c0a2bf6d389faf054471b4b8 (patch)
tree81e5c7ea47ec1e283ac9386ebfa9a926a9be1eab /src/library
parentf4a722d20547a5b4ffe47405d122b34b586c17c3 (diff)
downloadscala-b2864f8bf3b9dd27c0a2bf6d389faf054471b4b8.tar.gz
scala-b2864f8bf3b9dd27c0a2bf6d389faf054471b4b8.tar.bz2
scala-b2864f8bf3b9dd27c0a2bf6d389faf054471b4b8.zip
SI-6310 redeploys the starr
Updates the starr with the changes introduced by the previous commit. Cleans up obsolete symbols required by the previous starr.
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/reflect/base/TypeTags.scala5
-rw-r--r--src/library/scala/reflect/macros/internal/package.scala4
2 files changed, 0 insertions, 9 deletions
diff --git a/src/library/scala/reflect/base/TypeTags.scala b/src/library/scala/reflect/base/TypeTags.scala
index fd7a204ff4..37e0c4f02f 100644
--- a/src/library/scala/reflect/base/TypeTags.scala
+++ b/src/library/scala/reflect/base/TypeTags.scala
@@ -103,11 +103,6 @@ trait TypeTags { self: Universe =>
import definitions._
- // should be removed in the subsequent commit
- // after the starr is redeployed
- trait AbsTypeTag[T]
- object AbsTypeTag
-
/**
* If an implicit value of type u.WeakTypeTag[T] is required, the compiler will make one up on demand.
* The implicitly created value contains in its tpe field a value of type u.Type that is a reflective representation of T.
diff --git a/src/library/scala/reflect/macros/internal/package.scala b/src/library/scala/reflect/macros/internal/package.scala
index bbb57667ea..aca2b765f1 100644
--- a/src/library/scala/reflect/macros/internal/package.scala
+++ b/src/library/scala/reflect/macros/internal/package.scala
@@ -7,10 +7,6 @@ import scala.reflect.ClassTag
// implementation is magically hardwired into `scala.reflect.reify.Taggers`
// todo. once we have implicit macros for tag generation, we can remove these anchors
package object internal {
- // should be removed in the subsequent commit
- // after the starr is redeployed
- private[scala] def materializeAbsTypeTag[T](u: BaseUniverse): u.WeakTypeTag[T] = ??? // macro
-
private[scala] def materializeClassTag[T](u: BaseUniverse): ClassTag[T] = ??? // macro
private[scala] def materializeWeakTypeTag[T](u: BaseUniverse): u.WeakTypeTag[T] = ??? // macro
private[scala] def materializeTypeTag[T](u: BaseUniverse): u.TypeTag[T] = ??? // macro