Skip to content

Commit a7c0f67

Browse files
committed
fix formatting
1 parent 1f0397c commit a7c0f67

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

plugin-maven/src/main/java/com/diffplug/spotless/maven/SpotlessApplyMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2021 DiffPlug
2+
* Copyright 2016-2022 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

plugin-maven/src/main/java/com/diffplug/spotless/maven/incremental/UpToDateChecker.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ static UpToDateChecker noop(MavenProject project, Path indexFile, Log log) {
3838
static UpToDateChecker forProject(MavenProject project, Path indexFile, Iterable<Formatter> formatters, Log log) {
3939
return IndexBasedChecker.create(project, indexFile, formatters, log);
4040
}
41-
41+
4242
static UpToDateChecker wrapWithBuildContext(UpToDateChecker delegate, BuildContext buildContext) {
4343
return new UpToDateChecker() {
44-
44+
4545
@Override
4646
public void setUpToDate(Path file) {
4747
delegate.setUpToDate(file);
@@ -58,5 +58,5 @@ public void close() {
5858
}
5959
};
6060
}
61-
61+
6262
}

0 commit comments

Comments
 (0)