Skip to content

Commit 37a7457

Browse files
committed
Polish
1 parent 458d574 commit 37a7457

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/CollectionBinder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ protected Collection<Object> merge(Supplier<Collection<Object>> existing,
7171
}
7272
}
7373

74-
private Collection<Object> getExistingIfPossible(Supplier<Collection<Object>> existing) {
74+
private Collection<Object> getExistingIfPossible(
75+
Supplier<Collection<Object>> existing) {
7576
try {
7677
return existing.get();
7778
}

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/MapBinder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ protected Map<Object, Object> merge(Supplier<Map<Object, Object>> existing,
100100
}
101101
}
102102

103-
private Map<Object, Object> getExistingIfPossible(Supplier<Map<Object, Object>> existing) {
103+
private Map<Object, Object> getExistingIfPossible(
104+
Supplier<Map<Object, Object>> existing) {
104105
try {
105106
return existing.get();
106107
}

0 commit comments

Comments
 (0)