Tagged Questions
4
votes
5answers
2k views
How to avoid the “unused param” warning when overriding a method in java 1.4?
In this code :
public class MyClass {
private Object innerValue;
public Object getInnerValue() {
return this.innerValue;
}
public void setInnerValue(Object innerValue) {
...
0
votes
0answers
57 views
Can I make a Java Annotation which “extends” @SuppressWarnings?
I know that it's not possible to extends Java annotations.
I've created an annotation for a private field which means that the field is likely to appear unused in the class in which it is declared. ...