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) { ...