mirror of https://github.com/sbt/sbt.git
Merge pull request #8113 from xuwei-k/remove-unused-imports-2
[2.x] remove unused imports
This commit is contained in:
commit
b0e79146de
|
|
@ -1,6 +1,5 @@
|
|||
package sbt.internal
|
||||
|
||||
import sbt.internal.util.appmacro.*
|
||||
import verify.*
|
||||
import ContTestMacro.*
|
||||
import sbt.util.Applicative
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ import sbt.internal.util.Types.const
|
|||
import sbt.internal.util.complete.Parser
|
||||
import sbt.internal.util.{ Terminal as ITerminal, * }
|
||||
import sbt.util.{
|
||||
ActionCacheStore,
|
||||
AggregateActionCacheStore,
|
||||
BuildWideCacheConfiguration,
|
||||
cacheLevel,
|
||||
|
|
|
|||
|
|
@ -51,7 +51,6 @@ import sbt.internal.server.{
|
|||
BspCompileProgress,
|
||||
BspCompileTask,
|
||||
BuildServerProtocol,
|
||||
BuildServerReporter,
|
||||
Definition,
|
||||
LanguageServerProtocol,
|
||||
ServerHandler,
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ import sbt.nio.FileStamp
|
|||
import sbt.nio.Keys.{ inputFileStamps, outputFileStamps }
|
||||
import sbt.std.TaskExtra.*
|
||||
import sbt.util.InterfaceUtil.toOption
|
||||
import sbt.util.{ ActionCacheStore, DiskActionCacheStore, Logger }
|
||||
import sbt.util.{ DiskActionCacheStore, Logger }
|
||||
import sjsonnew.JsonFormat
|
||||
import xsbti.{ FileConverter, HashedVirtualFileRef, VirtualFileRef }
|
||||
import xsbti.compile.CompileAnalysis
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ import sbt.ScopeAxis.{ Select, This, Zero }
|
|||
import BuildStreams.Streams
|
||||
import sbt.io.syntax.*
|
||||
import sbt.internal.inc.MappedFileConverter
|
||||
import sbt.internal.util.{ AttributeEntry, AttributeKey, AttributeMap, Attributed }
|
||||
import sbt.internal.util.{ AttributeEntry, AttributeKey, AttributeMap }
|
||||
import sbt.internal.util.Attributed.data
|
||||
import sbt.util.Logger
|
||||
import xsbti.FileConverter
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
package sbt
|
||||
package internal
|
||||
|
||||
import java.io.File
|
||||
import java.util.LinkedHashSet
|
||||
import sbt.Keys.*
|
||||
import sbt.nio.Keys.*
|
||||
|
|
@ -23,7 +22,6 @@ import sbt.std.TaskExtra.*
|
|||
import sbt.util.*
|
||||
import scala.jdk.CollectionConverters.*
|
||||
import xsbti.{ HashedVirtualFileRef, VirtualFile, VirtualFileRef }
|
||||
import xsbti.compile.CompileAnalysis
|
||||
|
||||
private[sbt] object ClasspathImpl {
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ import sbt.librarymanagement.{
|
|||
SbtArtifacts,
|
||||
UpdateReport
|
||||
}
|
||||
import sbt.internal.util.Attributed
|
||||
import Def.{ ScopedKey, Setting }
|
||||
import Keys.*
|
||||
import Configurations.{ Compile, Runtime }
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ import scala.jdk.CollectionConverters.*
|
|||
import scala.xml.{ Node, PrefixedAttribute }
|
||||
|
||||
object IvyXml {
|
||||
import sbt.Project.*
|
||||
|
||||
private def rawContent(
|
||||
currentProject: Project,
|
||||
|
|
|
|||
Loading…
Reference in New Issue