Re: JDK-8071693 Introspector ignores default interface methods

2016-06-29 Thread Erik Joelsson
Hello, This review should be sent to the beans-dev mailing list. The build-dev mailing list is for issues concerning building OpenJDK. (I can't forward since I'm not a member of the beans-dev list) /Erik On 2016-06-29 20:04, Lukáš Kvídera wrote: I think I have found a solution for a bug

JDK-8071693 Introspector ignores default interface methods

2016-06-29 Thread Lukáš Kvídera
I think I have found a solution for a bug JDK-8071693. The problem is the Introspector does scan only in super classes and does not know about default methods. I just added condition method.isDefault() and manual testing proves my idea does work. I did NOT run junit tests. Can you please