-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Description
Given the following code block, if you run scalafix it will cause the second import to jump up a line resulting in it being commented out.
import java.time.Period
// import this here
import java.time.Instant
object hello extends App {
val x: Instant = Instant.now()
val y: Period = Period.ZERO
}It will become this:
import java.time.Period
// import this hereimport java.time.Instant
object hello extends App {
val x: Instant = Instant.now()
val y: Period = Period.ZERO
}NeQuissimus and He-Pin
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers