break;
}
unusedBinaryKeys.add(key);
}
if (change instanceof BinaryValueUsed) {
BinaryValueUsed unused = (BinaryValueUsed)change;
BinaryKey key = unused.getKey();
if (unusedBinaryKeys.contains(key)) {
// This change set had marked it as used, but now is unused again; removed it from the used.
unusedBinaryKeys.remove(key);
break;
}