// nope, we need to add a new one, add at the beginning of the list for that bucket
addEntry(color, increment, index);
}
private void addEntry(int color, int value, int index) {
ColorEntry entry = new ColorEntry(color, value, table[index]);
table[index] = entry;
size++;
modificationCount++;
// do we need to rehash?