-
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
Add -Werror for javac #107
base: master
Are you sure you want to change the base?
Changes from all commits
2e0a364
3ce7e93
b16d41e
f14c539
f293923
a519178
a10d195
fb4d27c
6517fba
75423ca
309184b
a3d4fe0
5e76579
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ public <T extends NodeWithAnnotations<?> & NodeWithRange<?>> Modification visit( | |
} | ||
|
||
@Override | ||
@SuppressWarnings("unchecked") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again why suppress There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @msridhar The only way to resolve this warning is to change the json dependency to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just created a followup PR that removes the added |
||
public JSONObject getJson() { | ||
JSONObject res = super.getJson(); | ||
res.put("INJECT", false); | ||
|
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.
I don't understand this change
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.
it seems once error prone is in the path we get the error below for compiling
annotator-core
:Added a dependency to resolve this issue.