Remove these save actions:
- Add final modifier to local variable or parameter
- Add final modifier to local variable or parameter except if it is implicit
- Remove unused suppress warning annotation
The last one is so that the Save Actions won't auto-remove @SuppressWarnings("unused") from public methods that Intellij would otherwise flag as unused because we call them via reflection, e.g.
public class TracerInstaller {
@SuppressWarnings("unused")
public static synchronized void installAgentTracer() {
...
}
...
}
Remove these save actions:
The last one is so that the Save Actions won't auto-remove
@SuppressWarnings("unused")from public methods that Intellij would otherwise flag as unused because we call them via reflection, e.g.