Skip to content

Commit b2864f8

Browse files
committed
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.
1 parent f4a722d commit b2864f8

File tree

8 files changed

+6
-15
lines changed

8 files changed

+6
-15
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7bad3afb569e2c57d1b299b61e0d3c0fa1b1d8d9 ?scala-compiler-src.jar
1+
acfbbb4117b222b488226b4a89d5e732eb59f19c ?scala-compiler-src.jar
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5f73d19a6ec70f67e6d8a2f08cde3551e51b2b79 ?scala-compiler.jar
1+
e0c0f2326622f535aa86978dee74dc7ac86e401b ?scala-compiler.jar
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26c6c1cf7be57afa519ec641fb78e16a771a534a ?scala-library-src.jar
1+
52b0ea12b0fe6c2150434fdda3909c2aa927a325 ?scala-library-src.jar

lib/scala-library.jar.desired.sha1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4f14def979133788dd91117a203a40e35cd24528 ?scala-library.jar
1+
7a35fcd17b39ea1e13cc8c919e1e556eed81e799 ?scala-library.jar
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
60c61467bc992752bf81bc0ca783a9d6a72db588 ?scala-reflect-src.jar
1+
fc25fdfd30959e77b85c0c7917005a83890f94a2 ?scala-reflect-src.jar

lib/scala-reflect.jar.desired.sha1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b3764f8b2f7719d1fbfaf9767a3a68f6ef7ad876 ?scala-reflect.jar
1+
5aca838ee9d82be45fb476c1722f71842d5d528e ?scala-reflect.jar

src/library/scala/reflect/base/TypeTags.scala

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,6 @@ trait TypeTags { self: Universe =>
103103

104104
import definitions._
105105

106-
// should be removed in the subsequent commit
107-
// after the starr is redeployed
108-
trait AbsTypeTag[T]
109-
object AbsTypeTag
110-
111106
/**
112107
* If an implicit value of type u.WeakTypeTag[T] is required, the compiler will make one up on demand.
113108
* The implicitly created value contains in its tpe field a value of type u.Type that is a reflective representation of T.

src/library/scala/reflect/macros/internal/package.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ import scala.reflect.ClassTag
77
// implementation is magically hardwired into `scala.reflect.reify.Taggers`
88
// todo. once we have implicit macros for tag generation, we can remove these anchors
99
package object internal {
10-
// should be removed in the subsequent commit
11-
// after the starr is redeployed
12-
private[scala] def materializeAbsTypeTag[T](u: BaseUniverse): u.WeakTypeTag[T] = ??? // macro
13-
1410
private[scala] def materializeClassTag[T](u: BaseUniverse): ClassTag[T] = ??? // macro
1511
private[scala] def materializeWeakTypeTag[T](u: BaseUniverse): u.WeakTypeTag[T] = ??? // macro
1612
private[scala] def materializeTypeTag[T](u: BaseUniverse): u.TypeTag[T] = ??? // macro

0 commit comments

Comments
 (0)