mirror of
https://github.com/corda/corda.git
synced 2025-06-13 20:58:19 +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 abstract Iterator<T> iterator();
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return Collections.toString(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user