Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c93ad94dad94e4ea047b17ee32caab1464db1207 (plain) (blame)
1
2
3
4
package java.util;

public abstract class AbstractSet<E> extends AbstractCollection<E> implements Set<E> {
}

Back to the top