1 <p> An inner class is invoking a method that could be resolved to either a inherited method or a method defined in an outer class. By the Java semantics,
2 it will be resolved to invoke the inherited method, but this may not be want
3 you intend. If you really intend to invoke the inherited method,
4 invoke it by invoking the method on super (e.g., invoke super.foo(17)), and
5 thus it will be clear to other readers of your code and to FindBugs
6 that you want to invoke the inherited method, not the method in the outer class.