From 8f520dafc73ce1e34f4540aae4e7b064431af9bd Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 2 Sep 2015 12:02:35 +0200 Subject: [PATCH] Remove hard-coded list of values in description Since the meta-data now provide an explicit support for value hints, we should not copy/paste them in the description as the IDE is able to process them any way it wants. Closes gh-3863 --- .../boot/actuate/autoconfigure/ShellProperties.java | 5 ++--- .../boot/autoconfigure/orm/jpa/JpaProperties.java | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ShellProperties.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ShellProperties.java index f519e4f8195..930dd345a4a 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ShellProperties.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ShellProperties.java @@ -42,9 +42,8 @@ public class ShellProperties { private static Log logger = LogFactory.getLog(ShellProperties.class); /** - * Authentication type (can be "simple", "spring", "key" or "jaas"). Auto-detected - * according to the environment (i.e. if Spring Security is available, "spring" is - * used by default). + * Authentication type. Auto-detected according to the environment (i.e. if + * Spring Security is available, "spring" is used by default). */ private String auth = "simple"; diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java index a4b701cbbb5..37fa29b2ab5 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java @@ -133,9 +133,9 @@ public class JpaProperties { private Class namingStrategy; /** - * DDL mode ("none", "validate", "update", "create", "create-drop"). This is - * actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to - * "create-drop" when using an embedded database, "none" otherwise. + * DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto" + * property. Default to "create-drop" when using an embedded database, + * "none" otherwise. */ private String ddlAuto;