Is there any shortcut for @SuppressWarnings({"unused", "WeakerAccess"})
Specially on java classes?
You could add a Live Template which you would then engage by typing the template short name and hitting TAB
.
Here's an example:
With this live template you can enter unused + TAB
and IntelliJ will auto complete to @SuppressWarnings({"unused", "WeakerAccess"})