Netbeans "Fix Similar Errors" Feature

This is a question about Netbeans. On the Tasks panel, can I select some of these errors and fix them all? I remember how it was done in the eclipse.

For example, I have many warnings that you are not using String concatenation with StringBuilder, and that Netbeans can correct these errors by replacing String concatenations with calls to StringBuilder.append() . It would be nice if I could fix all these errors with one click.

+4
source share
2 answers

Currently, I do not know anything built into netbeans that does this.

A macro would be the best, although the good old Alt + Enter does the trick.

+1
source

All Articles