Hello, Please review the following fix
JBS: https://bugs.openjdk.java.net/browse/JDK-8221244 Webrev: http://cr.openjdk.java.net/~dcherepanov/8221244/webrev.00/ The fix restores the code that took care of “not-replacing” the “is” getter with the “get” getters. The same check is already implemented in Introspector.processPropertyDescriptors [1] but after [2] the check is not longer working as PropertyDescriptor is now created from PropertyInfo that accumulates information about getters. The fix slightly adjusts PropertyInfo.initialize so that it doesn’t overwrite the “is” getter. Testing: added new regression test, tested with test/jdk/java/beans - no new failures found Thanks, Dmitry [1] https://hg.openjdk.java.net/jdk/jdk/file/d25b24c70126/src/java.desktop/share/classes/java/beans/Introspector.java#l637 [2] https://bugs.openjdk.java.net/browse/JDK-4058433
