Skip to content

Commit 2f1664e

Browse files
committed
Applied Spotless.
1 parent 5662619 commit 2f1664e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin-gradle/src/main/java/com/diffplug/gradle/spotless/FormatExtension.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.util.stream.Stream;
3030

3131
import javax.annotation.Nullable;
32+
3233
import org.gradle.api.GradleException;
3334
import org.gradle.api.Project;
3435
import org.gradle.api.file.FileCollection;
@@ -208,8 +209,7 @@ public void addStep(FormatterStep newStep) {
208209
}
209210

210211
/** Returns the existing step with the given name, if any. */
211-
protected @Nullable
212-
FormatterStep getExistingStep(String stepName) {
212+
protected @Nullable FormatterStep getExistingStep(String stepName) {
213213
return steps.stream() //
214214
.filter(step -> stepName.equals(step.getName())) //
215215
.findFirst() //

0 commit comments

Comments
 (0)