You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JNI Bind fails to compile (by design) when invalid arguments are passed, or names are used. While this is helpful to avoid making mistakes, the error messages are incomprehensible.
When an invalid method is called, and the name is incorrect, something like the following should be emitted in the compiler error for faster scanning:
Jni Bind Failure
Method Foo does not exist.
The following signatures are available:
Fooz ( int , int ) ;
Fooz ( float , int ) ;
This will not be completed for Release 1.0.
The text was updated successfully, but these errors were encountered:
JNI Bind fails to compile (by design) when invalid arguments are passed, or names are used. While this is helpful to avoid making mistakes, the error messages are incomprehensible.
When an invalid method is called, and the name is incorrect, something like the following should be emitted in the compiler error for faster scanning:
Method Foo does not exist.
The following signatures are available:
Fooz ( int , int ) ;
Fooz ( float , int ) ;
This will not be completed for Release 1.0.
The text was updated successfully, but these errors were encountered: