-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Remove extra ElementType
s in all synthetic annotations
#346
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice find!
Never mind, it looks like |
RetentionPolicy.RUNTIME
to all synthetic annotationsElementType
s in all synthetic annotations
@theron-wang I think this is still off - now not only is na-705 failing, but na-97 is, too. |
@kelloggm Looks like |
Closed as per njit-jerse/specimin-evaluation#12. |
This change allows na-705 to be reproducible. I discovered this one change was able to reproduce the error when running Specimin with
--jarPath path/to/checker-qual.jar
.Since(see comment below)@Retention(RetentionPolicy.RUNTIME)
is the most generous, it should work for all cases (i.e.CLASS
andSOURCE
).