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](https://github.com/uber/NullAway/compare/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] <support@github.com>

* Addressing jspecify nullability issues

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Soby Chacko <soby.chacko@broadcom.com>
This commit is contained in:
dependabot[bot]
2025-03-04 16:50:16 +00:00
committed by GitHub
parent cfd7c98e15
commit cbbd1d45fe
2 changed files with 3 additions and 2 deletions

View File

@@ -187,7 +187,7 @@ configure(javaProjects) { subproject ->
testImplementation "org.hamcrest:hamcrest-core:$hamcrestVersion"
optionalApi "org.assertj:assertj-core:$assertjVersion"
errorprone 'com.uber.nullaway:nullaway:0.12.3'
errorprone 'com.uber.nullaway:nullaway:0.12.4'
errorprone 'com.google.errorprone:error_prone_core:2.36.0'
}

View File

@@ -148,7 +148,8 @@ public final class KafkaConditions {
}
@Override
public boolean matches(ConsumerRecord<K, V> value) {
@SuppressWarnings("NullAway") // Overridden method does not define nullness
public boolean matches(@Nullable ConsumerRecord<K, @Nullable V> value) {
return this.keyCondition.matches(value) && this.valueCondition.matches(value);
}