File tree 3 files changed +4
-4
lines changed
launcher-implementation/src/main/scala/xsbt/boot
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ private[xsbt] class ParallelResolveEngine(
34
34
artifactFilter : Filter ,
35
35
options : DownloadOptions
36
36
): Unit = {
37
- import scala .collection . JavaConverters ._
37
+ import scala .jdk . CollectionConverters ._
38
38
val start = System .currentTimeMillis
39
39
report.getArtifacts match {
40
40
case typed : java.util.List [Artifact @ unchecked] =>
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ private[xsbt] class ParallelRetrieveEngine(
80
80
else settings.resolveFile(IvyPatternHelper .getTokenRoot(destIvyPattern))
81
81
82
82
implicit val ec = ParallelRetrieveEngine .retrieveExecutionContext
83
- import scala .collection . JavaConverters ._
83
+ import scala .jdk . CollectionConverters ._
84
84
type ValueType = julSet[String ]
85
85
val allRetrivedFuture = artifactsToCopy.entrySet().asScala.map {
86
86
case artifactAndPaths : julMap.Entry [ArtifactDownloadReport , ValueType ] @ unchecked =>
Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ final class Update(config: UpdateConfiguration) {
383
383
modules collectFirst { case m if m.getModuleId.equals(dep) => m.getRevision }
384
384
}
385
385
private [this ] def moduleRevisionIDs (report : ResolveReport ): Seq [ModuleRevisionId ] = {
386
- import collection . JavaConverters ._
386
+ import scala . jdk . CollectionConverters ._
387
387
import org .apache .ivy .core .resolve .IvyNode
388
388
report.getDependencies.asInstanceOf [java.util.List [IvyNode ]].asScala.toSeq map (_.getResolvedId)
389
389
}
@@ -446,7 +446,7 @@ final class Update(config: UpdateConfiguration) {
446
446
}
447
447
// infrastructure is needed to avoid duplication between this class and the ivy/ subproject
448
448
private def hasImplicitClassifier (artifact : IArtifact ): Boolean = {
449
- import collection . JavaConverters ._
449
+ import scala . jdk . CollectionConverters ._
450
450
artifact.getQualifiedExtraAttributes.asScala.keys.exists(_.asInstanceOf [String ] startsWith " m:" )
451
451
}
452
452
// exclude the local Maven repository for Scala -SNAPSHOTs
You can’t perform that action at this time.
0 commit comments