Skip to content

Commit cbbd1d4

Browse files
Bump com.uber.nullaway:nullaway from 0.12.3 to 0.12.4 in the development-dependencies group (#3773)
* Bump com.uber.nullaway:nullaway in the development-dependencies group Bumps the development-dependencies group with 1 update: [com.uber.nullaway:nullaway](https://github.com/uber/NullAway). Updates `com.uber.nullaway:nullaway` from 0.12.3 to 0.12.4 - [Release notes](https://github.com/uber/NullAway/releases) - [Changelog](https://github.com/uber/NullAway/blob/master/CHANGELOG.md) - [Commits](uber/NullAway@v0.12.3...v0.12.4) --- updated-dependencies: - dependency-name: com.uber.nullaway:nullaway dependency-type: direct:production update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Addressing jspecify nullability issues --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Soby Chacko <[email protected]>
1 parent cfd7c98 commit cbbd1d4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ configure(javaProjects) { subproject ->
187187
testImplementation "org.hamcrest:hamcrest-core:$hamcrestVersion"
188188
optionalApi "org.assertj:assertj-core:$assertjVersion"
189189

190-
errorprone 'com.uber.nullaway:nullaway:0.12.3'
190+
errorprone 'com.uber.nullaway:nullaway:0.12.4'
191191
errorprone 'com.google.errorprone:error_prone_core:2.36.0'
192192
}
193193

spring-kafka-test/src/main/java/org/springframework/kafka/test/assertj/KafkaConditions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ public ConsumerRecordKeyValueCondition(K key, V value) {
148148
}
149149

150150
@Override
151-
public boolean matches(ConsumerRecord<K, V> value) {
151+
@SuppressWarnings("NullAway") // Overridden method does not define nullness
152+
public boolean matches(@Nullable ConsumerRecord<K, @Nullable V> value) {
152153
return this.keyCondition.matches(value) && this.valueCondition.matches(value);
153154
}
154155

0 commit comments

Comments
 (0)