// + outerName + " - " + innerName + " - " + access + " @ "
// + mainClass);
// FIXME(ycoppel): probably an enum. What to do ?
return;
}
TypeElement inner = TypeNameUtil.fromInternalName(name);
if (inner.equals(mainClass)) {
// the visitInnerClass callback is called twice: once when visiting the
// outer class (A in A$B), and once when visiting the A$B class. we
// shortcut the second case so we don't add the dependency twice.
return;
}
TypeElement parent = TypeNameUtil.fromInternalName(outerName);
dl.newDep(parent, inner, JavaRelation.INNER_TYPE);
}