pull/13342/head
Madhura Bhave 7 years ago
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 { try {
return existing.get(); 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 { try {
return existing.get(); return existing.get();
} }

Loading…
Cancel
Save