Relates :
|
Consider: interface Super { public void m(Object o); public void m(String s); } interface One extends Super { public void m(Object o); } interface Two extends Super { public void m(String s); } abstract class AC implements One, Two { } ReferenceType.visibleMethods(AC) should return: One.m(Object) Two.m(String) but currently returns one of the methods from Super.
|