We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
package classindexbug; public class T1 { @Ann public static class ClassInsideT1 { } }
package classindexbug; public record T2() { @Ann public static class ClassInsideT2 { } }
package classindexbug; import org.atteo.classindex.IndexAnnotated; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.TYPE; @IndexAnnotated @Target(TYPE) public @interface Ann { }
The result in META-INF/annotations/classindexbug.Ann:
classindexbug.T1$ClassInsideT1
So T2$ClassInsideT2 is missing. The only difference between it and T1$ClassInsideT1 is that T2$ClassInsideT2 is declared in a record type.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
The result in META-INF/annotations/classindexbug.Ann:
So T2$ClassInsideT2 is missing. The only difference between it and T1$ClassInsideT1 is that T2$ClassInsideT2 is declared in a record type.
The text was updated successfully, but these errors were encountered: