Skip to content

Commit 1a14f39

Browse files
committed
Polish
1 parent 463a614 commit 1a14f39

File tree

3 files changed

+3
-3
lines changed
  • spring-boot-project
    • spring-boot/src/main/java/org/springframework/boot/context/properties/bind
    • spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample

3 files changed

+3
-3
lines changed

Diff for: spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/DefaultValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* @author Stephane Nicoll
3030
*/
31-
@Target({ ElementType.PARAMETER })
31+
@Target(ElementType.PARAMETER)
3232
@Retention(RetentionPolicy.RUNTIME)
3333
@Documented
3434
public @interface DefaultValue {

Diff for: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/DefaultValue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* @since 2.2.0
4141
*/
4242
@Retention(RetentionPolicy.RUNTIME)
43-
@Target({ ElementType.PARAMETER })
43+
@Target(ElementType.PARAMETER)
4444
@Documented
4545
public @interface DefaultValue {
4646

Diff for: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Name.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @since 2.4.0
3232
*/
3333
@Retention(RetentionPolicy.RUNTIME)
34-
@Target({ ElementType.PARAMETER })
34+
@Target(ElementType.PARAMETER)
3535
@Documented
3636
public @interface Name {
3737

0 commit comments

Comments
 (0)