Blocks should now be fully removed correctly so that they don't drop items.

This commit is contained in:
sk89q
2010-11-26 23:24:55 -08:00
parent d6d6624a04
commit 2e3c3404d4
2 changed files with 39 additions and 12 deletions

View File

@ -60,6 +60,14 @@ public class DoubleArrayList<A,B> implements Iterable<Map.Entry<A,B>> {
return listA.size();
}
/**
* Clear the list.
*/
public void clear() {
listA.clear();
listB.clear();
}
/**
* Get an entry set.
*