Skip to content

Commit 9791273

Browse files
committed
Get rid of unused import.
1 parent e311585 commit 9791273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/scala/tools/nsc/typechecker/PatMatVirtualiser.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ defined class Foo */
11381138
case (btm@BodyTreeMaker(body, _)) :: Nil =>
11391139
Some(CaseDef(Ident(nme.WILDCARD), EmptyTree, btm.substitution(body)))
11401140
// constant
1141-
case (EqualityTestTreeMaker(_, const@SwitchablePattern(), _)) :: (btm@BodyTreeMaker(body, _)) :: Nil => import CODE._
1141+
case (EqualityTestTreeMaker(_, const@SwitchablePattern(), _)) :: (btm@BodyTreeMaker(body, _)) :: Nil =>
11421142
Some(CaseDef(const, EmptyTree, btm.substitution(body)))
11431143
// alternatives
11441144
case AlternativesTreeMaker(_, altss, _) :: (btm@BodyTreeMaker(body, _)) :: Nil => // assert(currLabel.isEmpty && nextLabel.isEmpty)

0 commit comments

Comments
 (0)