UC.AUV
Avoid unused local variables
Description
This rule flags any unused local variable in your methods.
Example
package UC;
public class AUV {
void method () {
int i = 4;
}
}
Repair
An unused variable may indicate a logical flaw in the corresponding method. In this case, the method needs to be rewritten to take the unused variable into account.
|