Skip to content

Commit 8f520da

Browse files
committed
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 spring-projectsgh-3863
1 parent 2b3d419 commit 8f520da

File tree

2 files changed

+5
-6
lines changed
  • spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure
  • spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa

2 files changed

+5
-6
lines changed

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ShellProperties.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ public class ShellProperties {
4242
private static Log logger = LogFactory.getLog(ShellProperties.class);
4343

4444
/**
45-
* Authentication type (can be "simple", "spring", "key" or "jaas"). Auto-detected
46-
* according to the environment (i.e. if Spring Security is available, "spring" is
47-
* used by default).
45+
* Authentication type. Auto-detected according to the environment (i.e. if
46+
* Spring Security is available, "spring" is used by default).
4847
*/
4948
private String auth = "simple";
5049

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ public static class Hibernate {
133133
private Class<?> namingStrategy;
134134

135135
/**
136-
* DDL mode ("none", "validate", "update", "create", "create-drop"). This is
137-
* actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to
138-
* "create-drop" when using an embedded database, "none" otherwise.
136+
* DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto"
137+
* property. Default to "create-drop" when using an embedded database,
138+
* "none" otherwise.
139139
*/
140140
private String ddlAuto;
141141

0 commit comments

Comments
 (0)