Skip to content
Snippets Groups Projects
Commit f1be93eb authored by Matthias Sohn's avatar Matthias Sohn Committed by Code Review
Browse files

Merge "ObjectIdSubclassMap: Add isEmpty() method"

parents c2960cdf 4cc7b1c5
No related branches found
No related tags found
No related merge requests found
......@@ -135,6 +135,11 @@ public int size() {
return size;
}
/** @return true if {@link #size()} is 0. */
public boolean isEmpty() {
return size == 0;
}
public Iterator<V> iterator() {
return new Iterator<V>() {
private int found;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment