Skip to content

Working Prototype, with prerelease findbugs plugin

Pre-release
Pre-release
Compare
Choose a tag to compare
@kjlubick kjlubick released this 18 Aug 03:37
· 467 commits to master since this release

This is a prototype that extends the standard set of quick-fixes by a quickfix for the fb-contrib bug pattern Literal String Comparison.

String foo = ...
if (foo.equals("bar")) {
//....
}

gets turned into

String foo = ...
if ("bar".equals(foo)) {
//....
}

See the Readme for installation instructions.

Most importantly, this release has the latest (as of publication) version of the FindBugs Eclipse plugin, the one that publishes the extension point fb-contrib quickfixes. You will need this installed (for now) to run fb-contrib quickfixes