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 fa23242 commit b7b17a9Copy full SHA for b7b17a9
plugin-maven/src/main/java/com/diffplug/spotless/maven/incremental/UpToDateChecker.java
@@ -49,7 +49,7 @@ public void setUpToDate(Path file) {
49
50
@Override
51
public boolean isUpToDate(Path file) {
52
- return !buildContext.hasDelta(file.toFile()) || delegate.isUpToDate(file);
+ return !buildContext.hasDelta(file.toFile()) && delegate.isUpToDate(file);
53
}
54
55
0 commit comments