From b401be15892633f1371ad810b45569742dba3741 Mon Sep 17 00:00:00 2001 From: maruoovv Date: Wed, 3 Mar 2021 22:29:28 +0900 Subject: [PATCH] Correct javadoc for ON_PARAM See gh-25480 --- .../boot/autoconfigure/web/ErrorProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ErrorProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ErrorProperties.java index a2a7b08344..84bf5e0d76 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ErrorProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ErrorProperties.java @@ -117,7 +117,7 @@ public class ErrorProperties { ALWAYS, /** - * Add error attribute when the appropriate request parameter is "true". + * Add stacktrace attribute when the appropriate request parameter is not "false". */ ON_PARAM, @@ -145,7 +145,7 @@ public class ErrorProperties { ALWAYS, /** - * Add error attribute when the appropriate request parameter is "true". + * Add error attribute when the appropriate request parameter is not "false". */ ON_PARAM