开发者

Eclipse plugin like Intellij's InspectionGadget?

开发者 https://www.devze.com 2023-01-29 08:24 出处:网络
is there a plugin for eclipse like the InspectionGadget for Intellij? On Intellij when you write some code that can be simplify you have a warning message/dialog on the editor and you have informatio

is there a plugin for eclipse like the InspectionGadget for Intellij?

On Intellij when you write some code that can be simplify you have a warning message/dialog on the editor and you have information to how to change the code.

Just a very simple example:

private int foobar(){
开发者_JS百科
int test = someCalculation();

return test;

}

i get a warning message that this code can be changed to

return someCalculation();

and other similar helps.

Thanks.


As for as code analysis FindBugs is pretty good.. But that should not work with following example :)


No, I don't think there is.

0

精彩评论

暂无评论...
验证码 换一张
取 消