I’m overriding some classes in eclipse android java project in my local private inner classes and although I see projects where this is handled fine in my particular project settings its complaining Must override a method which is exactly what it is doing???? Thanks
I’m overriding some classes in eclipse android java project in my local private inner
Share
[My guess, before code of the op]
In Java 6, you can use @Override to annotate a method that implement an interface. In Java 5 you are not allow to do that.
See: Why is javac failing on @Override annotation