You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,6 @@ If a quick fix adds something that is removed by another quick fix, the removal
162
162
| Remove final from private method | The method `private final void method()` becomes `private void method()`
163
163
| Remove unnecessary final to local variable or parameter | The local variable `int final variable = 0` becomes `int variable = 0`
164
164
| 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))
| 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
168
167
| 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