RNF7588

The first parameter for a non-static Java method call must be an Object.

30

Cause . . . . . : For a call to a Java method, where the STATIC keyword was not coded on the prototype, an extra parameter is required at the beginning of the parameter list representing the instance Object for the Java method. The first parameter must be a field or an array element. It cannot be *NULL. The specification is ignored.

Recovery . . . : Ensure that an extra parameter is added at the beginning of the parameter list for the Java call, and that the parameter is an Object field or an Object array element. Compile again.