Skip to content

Commit 6316f9b

Browse files
Excavator: Upgrades suppressible-error-prone to the latest version (#1335)
1 parent bf88e70 commit 6316f9b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818
classpath 'com.palantir.gradle.plugintesting:gradle-plugin-testing:0.6.0'
1919
classpath 'com.palantir.javaformat:gradle-palantir-java-format:2.69.0'
2020
classpath 'com.palantir.gradle.revapi:gradle-revapi:1.8.0'
21-
classpath 'com.palantir.suppressible-error-prone:gradle-suppressible-error-prone:2.9.0'
21+
classpath 'com.palantir.suppressible-error-prone:gradle-suppressible-error-prone:2.11.0'
2222
classpath 'gradle.plugin.org.inferred:gradle-processors:3.7.0'
2323
classpath 'me.champeau.jmh:jmh-gradle-plugin:0.7.3'
2424
}

gradle-palantir-java-format/src/main/java/com/palantir/javaformat/gradle/spotless/NativePalantirJavaFormatStep.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ static class State implements Serializable {
5252

5353
private final transient Supplier<File> execSupplier;
5454

55+
@SuppressWarnings("for-rollout:NullAway")
5556
State(Supplier<File> supplier) {
5657
this.execSupplier = supplier;
5758
}

gradle-palantir-java-format/src/main/java/com/palantir/javaformat/gradle/spotless/PalantirJavaFormatStep.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ static final class State implements Serializable {
7575
* @param jarsSupplier Supplies the jars that contain the palantir-java-format implementation. This is only used for caching and
7676
* up-to-dateness purposes.
7777
*/
78+
@SuppressWarnings("for-rollout:NullAway")
7879
State(Supplier<Iterable<File>> jarsSupplier, Supplier<FormatterService> memoizedFormatter) {
7980
this.jarsSupplier = jarsSupplier;
8081
this.memoizedFormatter = memoizedFormatter;

0 commit comments

Comments
 (0)