+2004-06-30 Jerry Quinn <jlquinn@optonline.net>
+
+ * java/beans/Statement.java (doExecute): Fix formatting.
+
2004-06-29 Per Bothner <per@bothner.com>
* jni.cc (_Jv_JNI_NewGlobalRef, JNICALL _Jv_JNI_DeleteGlobalRef,
}
- if (ptypes.length != args.length) continue;
+ if (ptypes.length != args.length)
+ continue;
// Check if method matches
- if (!compatible(ptypes, argTypes)) continue;
+ if (!compatible(ptypes, argTypes))
+ continue;
// Use method[i] if it is more specific.
// FIXME: should this check both directions and throw if
for (int i = 0; i < methods.length; i++)
{
// Skip methods with wrong name or number of args.
- if (!methods[i].getName().equals(methodName)) continue;
+ if (!methods[i].getName().equals(methodName))
+ continue;
Class ptypes[] = methods[i].getParameterTypes();
- if (ptypes.length != args.length) continue;
+ if (ptypes.length != args.length)
+ continue;
// Check if method matches
- if (!compatible(ptypes, argTypes)) continue;
+ if (!compatible(ptypes, argTypes))
+ continue;
// Use method[i] if it is more specific.
// FIXME: should this check both directions and throw if