Skip to content

Commit

Permalink
chore: fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
slandelle committed Apr 23, 2024
1 parent 9dda588 commit 050cbed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/sbt_inc/CompilerBridgeFactory.java
Expand Up @@ -135,7 +135,7 @@ private static File getScala2CompilerBridgeJar(
synchronized (CompilerBridgeFactory.class) {
boolean compiledWasInstalledWhileThisThreadWasWaiting = cachedCompiledBridgeJar.exists();

if(compiledWasInstalledWhileThisThreadWasWaiting){
if (compiledWasInstalledWhileThisThreadWasWaiting) {
return cachedCompiledBridgeJar;
}

Expand Down
1 change: 1 addition & 0 deletions src/main/java/scala_maven/MavenArtifactResolver.java
Expand Up @@ -16,6 +16,7 @@ public class MavenArtifactResolver {

/** Constant {@link String} for "pom". Used to specify the Maven POM artifact type. */
public static final String POM = "pom";

/** Constant {@link String} for "jar". Used to specify the Maven JAR artifact type. */
public static final String JAR = "jar";

Expand Down
1 change: 1 addition & 0 deletions src/main/java/scala_maven/ScalaDocJarMojo.java
Expand Up @@ -34,6 +34,7 @@ public class ScalaDocJarMojo extends ScalaDocMojo {

private static final String[] DEFAULT_INCLUDES = new String[] {"**/**"};
private static final String[] DEFAULT_EXCLUDES = new String[] {};

/** The Jar archiver. */
@Component(role = Archiver.class, hint = "jar")
private JarArchiver jarArchiver;
Expand Down

0 comments on commit 050cbed

Please sign in to comment.