Search code examples
androideclipsemethodserror-suppression

Suppress unimplemented methods in eclipse


Is it possible to suppress the unimplemented methods error in eclipse? If so, is this a smart thing to do or will this cause possible instability?


Solution

  • You cannot suppress this, because it is not a warning. You would be breaking the contract of an interface or an abstract class by not implementing their abstract methods.

    It is not a smart thing to do, because your code would not compile.