for (int i = 0; i < m; i++) {
GwtRecompile module = modules.get(i);
Node duplicate = existing.get(module.getModule());
if (duplicate != null) {
// TODO check revision # and take freshest
duplicate.removeFromParent();
}
OptionElement opt = createOption(module, i == 0);
list.appendChild(opt);
}
}