As Dave points out (or perhaps Dave's Eclipse), we're implementing an IntSet

method here not overriding an AbstractSet method here.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2584 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2009-07-10 23:13:49 +00:00
parent 297466ec29
commit 8296003607
@@ -35,7 +35,7 @@ public abstract class AbstractIntSet extends AbstractSet<Integer>
return interator();
}
@Override // from AbstractSet
// from IntSet
public boolean add (int t)
{
throw new UnsupportedOperationException();