-
Notifications
You must be signed in to change notification settings - Fork 745
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
MissingSummary
triggers IllegalArgumentException
#1444
Comments
Thanks for the report. I've sent out a fix internally. There seems to be some issue with javac's parsing of Javadocs. It doesn't output an end position for @see in this case. |
Merged
netdpb
pushed a commit
that referenced
this issue
Jan 8, 2020
… endpos for @see. Fixes external #1444 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=288656035
Closed
netdpb
pushed a commit
that referenced
this issue
Jan 9, 2020
… endpos for @see. Fixes #1444 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=288656035
netdpb
pushed a commit
that referenced
this issue
Jan 9, 2020
… endpos for @see. Fixes external #1444 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=288656035
kmclarnon
pushed a commit
to HubSpot/error-prone
that referenced
this issue
Feb 19, 2020
… endpos for @see. Fixes external google#1444 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=288656035
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider the following code:
Compile the code as follows (Caffeine must be added to the classpath explicitly due to #1398):
javac \ -XDcompilePolicy=simple \ -processorpath error_prone_core-2.3.4-with-dependencies.jar:caffeine-2.8.0.jar \ '-Xplugin:ErrorProne -XepDisableAllChecks -Xep:MissingSummary:WARN' \ Dummy.java
This causes the following failure:
If the
@see
contains a "regular" reference instead of an HTML link then the exception is not thrown.The text was updated successfully, but these errors were encountered: