Skip to content

Commit 36f6c10

Browse files
committed
Remove deprecated DynamicTuple
1 parent 326c6e7 commit 36f6c10

File tree

12 files changed

+0
-71
lines changed

12 files changed

+0
-71
lines changed

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Apply.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Apply {

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Concat.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
44
import org.openjdk.jmh.infra.Blackhole
5-
import scala.runtime.DynamicTuple
65

76
@State(Scope.Thread)
87
class Concat {

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Cons.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Cons {

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Conversions.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Conversions {

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Map.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Map {

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Tail.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Tail {

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/Zip.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Zip {

bench-run/src/main/scala/tuples/Drop.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Drop {

bench-run/src/main/scala/tuples/Split.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Split {

bench-run/src/main/scala/tuples/Take.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package dotty.tools.benchmarks.tuples
22

33
import org.openjdk.jmh.annotations._
4-
import scala.runtime.DynamicTuple
54

65
@State(Scope.Thread)
76
class Take {

library/src/scala/Tuple.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import annotation.showAsInfix
33
import compiletime._
44
import internal._
55

6-
import scala.runtime.DynamicTuple
7-
86
/** Tuple of arbitrary arity */
97
sealed trait Tuple extends Any {
108
import Tuple._

library/src/scala/runtime/DynamicTupleOld.scala

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)