name = parent.name;
} else if (parent.name != null && !parent.name.equals(name)) {
msg = "OID component '" + parent.name + "' was previously " +
"defined as '" + name + "'";
if (log == null) {
throw new MibException(location, msg);
} else {
log.addWarning(location, msg);
}
}
if (parent.symbol != null) {
throw new MibException(location,
"INTERNAL ERROR: OID merge with " +
"symbol reference already set");
}
for (int i = 0; i < parent.children.size(); i++) {
child = (ObjectIdentifierValue) parent.children.get(i);