Skip to content

Commit e5d46e6

Browse files
Remove extra type parameter
1 parent 77eeda7 commit e5d46e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/tastyreflect/ReflectionInternal.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ReflectionCompilerInterface(val rootContext: core.Contexts.Context) extend
3636
def unpickleExpr(repr: Unpickler.PickledQuote, args: Unpickler.PickledExprArgs): scala.quoted.Expr[_] =
3737
new scala.internal.quoted.TastyTreeExpr(PickledQuotes.unpickleExpr(repr, args))
3838

39-
def unpickleType[T](repr: Unpickler.PickledQuote, args: Unpickler.PickledTypeArgs): scala.quoted.Type[_] =
39+
def unpickleType(repr: Unpickler.PickledQuote, args: Unpickler.PickledTypeArgs): scala.quoted.Type[_] =
4040
new scala.internal.quoted.TreeType(PickledQuotes.unpickleType(repr, args))
4141

4242
//

0 commit comments

Comments
 (0)