mirror of
https://github.com/corda/corda.git
synced 2025-06-12 20:28:18 +00:00
add AbstractCollection.toString implementation
This commit is contained in:
@ -72,4 +72,7 @@ public abstract class AbstractCollection<T> implements Collection<T> {
|
||||
|
||||
public abstract Iterator<T> iterator();
|
||||
|
||||
public String toString() {
|
||||
return Collections.toString(this);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user