Re: RFR 9 and 8u: JDK-8029674: (reflect) getMethods returns default methods that are not members of the class

2014-06-07 Thread Andrej Golovnin
Hi Joe, > Sorry for the belated review. > > Generally the change looks good. One question, in > > 2803 private boolean matchesNameAndDescriptor(Method m1, Method m2) { > 2804 return m1.getReturnType() == m2.getReturnType() && > 2805m1.getName() == m2.getNa

Re: RFR 9 and 8u: JDK-8029674: (reflect) getMethods returns default methods that are not members of the class

2014-06-07 Thread Joe Darcy
Hi Joel, Sorry for the belated review. Generally the change looks good. One question, in 2803 private boolean matchesNameAndDescriptor(Method m1, Method m2) { 2804 return m1.getReturnType() == m2.getReturnType() && 2805m1.getName() == m2.getName() && 28