Index: gnu/java/beans/IntrospectionIncubator.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/beans/IntrospectionIncubator.java,v retrieving revision 1.15 diff -u -r1.15 IntrospectionIncubator.java --- gnu/java/beans/IntrospectionIncubator.java 2 Mar 2005 17:29:07 -0000 1.15 +++ gnu/java/beans/IntrospectionIncubator.java 18 Apr 2005 08:46:24 -0000 @@ -323,6 +323,8 @@ return; } newName = capitalize(newName); + if (newName.length() == 0) + return; DoubleKey k = new DoubleKey(type,newName); Method[] methods = (Method[])propertyMethods.get(k); @@ -350,6 +352,8 @@ return; } newName = capitalize(newName); + if (newName.length() == 0) + return; DoubleKey k = new DoubleKey(type,newName); Method[] methods = (Method[])listenerMethods.get(k);