The import
keyword allows you to bring entities into scope and use them. There is no reason to import an entity twice. This is likely a mistake and the second import statement can be removed.
import scala.util.Try
import scala.util.control.Breaks
import scala.util.Try // Redundant
import scala.util.Try
import scala.util.control.Breaks