elharo opened a new pull request, #288: URL: https://github.com/apache/maven-dependency-analyzer/pull/288
The `visitInnerClassType` override in `DefaultSignatureVisitor` is dead code — it records only the bare inner class name (e.g. "Inner") which is nonsensical, but it's never called in practice. Modern `javac` always uses `$` notation in class signatures (e.g. `Lx/y/z$Inner;`) rather than dot notation (`Lx/y/z.Inner;`). ASM's `SignatureReader` treats the entire `x/y/z$Inner` as a single `visitClassType` call, so `visitInnerClassType` is never invoked for real-world class files. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
