We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a22040f commit e655f24Copy full SHA for e655f24
src/main/java/scala_maven/ScalaMojoSupport.java
@@ -228,9 +228,7 @@ public Context findScalaContext() throws Exception {
228
VersionNumber scalaVersion = findScalaVersion();
229
230
ArtifactIds aids =
231
- scalaVersion.major == 3
232
- ? new ArtifactIds4Scala3(scalaVersion)
233
- : new ArtifactIds4Scala2();
+ scalaVersion.major == 3 ? new ArtifactIds4Scala3(scalaVersion) : new ArtifactIds4Scala2();
234
VersionNumber requiredScalaVersion =
235
StringUtils.isNotEmpty(scalaCompatVersion)
236
? new VersionNumberMask(scalaCompatVersion)
0 commit comments