From 4359008b2b8b4a5699d0038b854b0e36efaf1e1b Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Tue, 29 Aug 2017 01:49:37 +0200 Subject: [PATCH] Polishing Issue: SPR-15659 --- src/docs/asciidoc/kotlin.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/docs/asciidoc/kotlin.adoc b/src/docs/asciidoc/kotlin.adoc index e2466cb98a..37904a13f3 100644 --- a/src/docs/asciidoc/kotlin.adoc +++ b/src/docs/asciidoc/kotlin.adoc @@ -80,6 +80,7 @@ http://www.baeldung.com/kotlin-null-safety[comprehensive guide to Kotlin null-sa Although Java does not allow to express null-safety in its type-system, Spring Framework 5 introduces https://jira.spring.io/browse/SPR-15540[null-safety of the whole Spring Framework APIs] via tooling-friendly annotations: + * `@NonNullApi` annotations at package level declare that non-null is the default behavior * `@Nullable` annotations where specific parameters or return values can be `null`.