Y
Hacker News
new
|
ask
|
show
|
jobs
by
xenomachina
2382 days ago
For a long time I've wanted a sort of "local deprecation" tool where we could have a list of things in the JDK that shouldn't be used, and any direct reference to them would cause our build to fail.
2 comments
erik_seaberg
2382 days ago
https://errorprone.info/
can be configured to look at the AST and warn or reject a lot of specific problems.
link
cesarb
2382 days ago
We use
https://github.com/policeman-tools/forbidden-apis
for that.
link