--- old/src/share/classes/java/beans/IndexedPropertyDescriptor.java 2014-05-29 20:09:21.000000000 -0700 +++ new/src/share/classes/java/beans/IndexedPropertyDescriptor.java 2014-05-29 20:09:21.000000000 -0700 @@ -353,7 +353,7 @@ Class indexedPropertyType = null; if (indexedReadMethod != null) { - Class params[] = getParameterTypes(getClass0(), indexedReadMethod); + Class[] params = getParameterTypes(getClass0(), indexedReadMethod); if (params.length != 1) { throw new IntrospectionException("bad indexed read method arg count"); } @@ -366,7 +366,7 @@ } } if (indexedWriteMethod != null) { - Class params[] = getParameterTypes(getClass0(), indexedWriteMethod); + Class[] params = getParameterTypes(getClass0(), indexedWriteMethod); if (params.length != 2) { throw new IntrospectionException("bad indexed write method arg count"); }