Polish
This commit is contained in:
parent
458d574d1f
commit
37a7457f36
|
@ -71,7 +71,8 @@ class CollectionBinder extends IndexedElementsBinder<Collection<Object>> {
|
|||
}
|
||||
}
|
||||
|
||||
private Collection<Object> getExistingIfPossible(Supplier<Collection<Object>> existing) {
|
||||
private Collection<Object> getExistingIfPossible(
|
||||
Supplier<Collection<Object>> existing) {
|
||||
try {
|
||||
return existing.get();
|
||||
}
|
||||
|
|
|
@ -100,7 +100,8 @@ class MapBinder extends AggregateBinder<Map<Object, Object>> {
|
|||
}
|
||||
}
|
||||
|
||||
private Map<Object, Object> getExistingIfPossible(Supplier<Map<Object, Object>> existing) {
|
||||
private Map<Object, Object> getExistingIfPossible(
|
||||
Supplier<Map<Object, Object>> existing) {
|
||||
try {
|
||||
return existing.get();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue