add AbstractCollection.toString implementation

This commit is contained in:
Joel Dice 2012-01-12 10:45:05 -07:00
parent 9ba7c504da
commit 7022b23b26

View File

@ -72,4 +72,7 @@ public abstract class AbstractCollection<T> implements Collection<T> {
public abstract Iterator<T> iterator();
public String toString() {
return Collections.toString(this);
}
}