Commit 37a7457f authored by Madhura Bhave's avatar Madhura Bhave

Polish

parent 458d574d
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment