Skip to content

Commit

Permalink
remove whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rolang committed Mar 10, 2024
1 parent 8c1529c commit 10148c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/scala/org/jmotor/sbt/service/VersionServiceImpl.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ import scala.util.{Failure, Success}
* AI
*/
class VersionServiceImpl(logger: Logger, scalaVersion: String, scalaBinaryVersion: String, resolvers: Seq[Resolver])
extends VersionService {
extends VersionService {

private[this] lazy val groups = getLoaderGroups(resolvers)

override def checkForUpdates(module: ModuleID): Future[ModuleStatus] = check(module)

override def checkPluginForUpdates(
module: ModuleID,
sbtBinaryVersion: String,
sbtScalaBinaryVersion: String
): Future[ModuleStatus] =
module: ModuleID,
sbtBinaryVersion: String,
sbtScalaBinaryVersion: String
): Future[ModuleStatus] =
check(module, Option(sbtBinaryVersion -> sbtScalaBinaryVersion))

private[this] def check(module: ModuleID, sbtSettings: Option[(String, String)] = None): Future[ModuleStatus] = {
Expand Down

0 comments on commit 10148c2

Please sign in to comment.