From bb7ad30de42ce1b6e084929574872409b1026414 Mon Sep 17 00:00:00 2001 From: Jim Stockwell Date: Wed, 25 Nov 2020 20:00:51 -0700 Subject: [PATCH] Fix ErrorAttributeOptions#getIncludes Javadoc See gh-24257 --- .../springframework/boot/web/error/ErrorAttributeOptions.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/error/ErrorAttributeOptions.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/error/ErrorAttributeOptions.java index cd47e8dc070d..707a889be10d 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/error/ErrorAttributeOptions.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/error/ErrorAttributeOptions.java @@ -49,8 +49,7 @@ public boolean isIncluded(Include include) { /** * Get all options for including attributes in the error response. - * @return {@code true} if the {@code Include} attribute is included in the error - * response, {@code false} otherwise + * @return the options */ public Set getIncludes() { return this.includes;