}
public boolean removeAll(ByteIterable source)
{
int oldSize = ByteBooleanHashMap.this.size();
ByteIterator iterator = source.byteIterator();
while (iterator.hasNext())
{
ByteBooleanHashMap.this.removeKey(iterator.next());
}
return oldSize != ByteBooleanHashMap.this.size();
}