elharo commented on issue #282: URL: https://github.com/apache/maven-dependency-analyzer/issues/282#issuecomment-4892871413
Standalone reproducer project: https://github.com/elharo/maven-dependency-analyzer/releases/tag/reproducer-mshared-1333 ``` $ mvn -q compile exec:java Recorded names: java.lang.Object p.q.r x.y.z Inner # <--- bug: bare name instead of x.y.z$Inner a.b.c BUG CONFIRMED: 'Inner' was recorded as a dependency ``` The `BuggySignatureVisitor.visitInnerClassType` records only the simple name `Inner` instead of the fully-qualified `x.y.z$Inner` (or equivalently, the outer class `x.y.z` which is already captured by `visitClassType`). -- 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]
