Skip to content

Commit 8fcd6b1

Browse files
committed
2 parents ed294ec + 6cd0d2a commit 8fcd6b1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ If a quick fix adds something that is removed by another quick fix, the removal
162162
| Remove final from private method | The method `private final void method()` becomes `private void method()`
163163
| Remove unnecessary final to local variable or parameter | The local variable `int final variable = 0` becomes `int variable = 0`
164164
| Remove explicit generic type for diamond | The list creation `List<String> list = new ArrayList<String>()` becomes `List<String> list = new ArrayList<>()`
165-
| Remove unused suppress warning annotation | The annotation `@SuppressWarning` will be removed if it is unused (warning: "unchecked" doesn't work properly see [#87](https://github.com/dubreuia/intellij-plugin-save-actions/issues/87))
166165
| Remove unnecessary semicolon | The statement `int variable = 0;;` becomes `int variable = 0;`
167166
| Remove blocks from if/while/for statements | The statement `if (true) { return false; }` becomes `if (true) return false;`, also working for `for` and `while` statements
168167
| Change visibility of field or method to lower access | The field `public int field = 0` becomes `private int field = 0` if it is not used outside class, also working for methods

0 commit comments

Comments
 (0)