From 197de07634e05a55a34547d2a353ba47c23caab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Thu, 10 Jul 2025 10:52:38 +0200 Subject: [PATCH] Document a NullAway limitation --- framework-docs/modules/ROOT/pages/core/null-safety.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/framework-docs/modules/ROOT/pages/core/null-safety.adoc b/framework-docs/modules/ROOT/pages/core/null-safety.adoc index f360187114..854d061baf 100644 --- a/framework-docs/modules/ROOT/pages/core/null-safety.adoc +++ b/framework-docs/modules/ROOT/pages/core/null-safety.adoc @@ -177,6 +177,7 @@ non-null values even if that cannot be expressed by the API. to be present and when non-null related values have been inserted previously. - `@SuppressWarnings("NullAway") // Overridden method does not define nullability` can be used when the superclass does not define nullability (typically when the superclass comes from an external dependency). +- `@SuppressWarnings("NullAway") // See https://github.com/uber/NullAway/issues/1075` can be used when NullAway is not able to detect type variable nullness in generic methods. [[null-safety-migrating]]