Re: RFR: 8341791: Fix ExceptionOccurred in java.prefs

2024-10-10 Thread Justin Lu
On Wed, 9 Oct 2024 17:28:07 GMT, Justin Lu wrote: > Please review this PR which fixes incorrect usage of `jthrowable > ExceptionOccurred(JNIEnv *env)` within _java.prefs_. > > This corrects instances where the return value is being treated as a boolean. > Such occurrences are replaced with `jb

Re: RFR: 8341791: Fix ExceptionOccurred in java.prefs

2024-10-10 Thread Naoto Sato
On Wed, 9 Oct 2024 17:28:07 GMT, Justin Lu wrote: > Please review this PR which fixes incorrect usage of `jthrowable > ExceptionOccurred(JNIEnv *env)` within _java.prefs_. > > This corrects instances where the return value is being treated as a boolean. > Such occurrences are replaced with `jb

Re: RFR: 8341791: Fix ExceptionOccurred in java.prefs

2024-10-10 Thread Jaikiran Pai
On Wed, 9 Oct 2024 17:28:07 GMT, Justin Lu wrote: > Please review this PR which fixes incorrect usage of `jthrowable > ExceptionOccurred(JNIEnv *env)` within _java.prefs_. > > This corrects instances where the return value is being treated as a boolean. > Such occurrences are replaced with `jb

Re: RFR: 8341791: Fix ExceptionOccurred in java.prefs

2024-10-09 Thread Brian Burkhalter
On Wed, 9 Oct 2024 17:28:07 GMT, Justin Lu wrote: > Please review this PR which fixes incorrect usage of `jthrowable > ExceptionOccurred(JNIEnv *env)` within _java.prefs_. > > This corrects instances where the return value is being treated as a boolean. > Such occurrences are replaced with `jb

RFR: 8341791: Fix ExceptionOccurred in java.prefs

2024-10-09 Thread Justin Lu
Please review this PR which fixes incorrect usage of `jthrowable ExceptionOccurred(JNIEnv *env)` within _java.prefs_. This corrects instances where the return value is being treated as a boolean. Such occurrences are replaced with `jboolean ExceptionCheck(JNIEnv *env)`. - Commit me