Skip to content

Commit

Permalink
Native exception handling: Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed May 31, 2021
1 parent e6c89fb commit d9222ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ static const char *kExceptionClasses[kExceptionMaxExcl] = {
"java/net/SocketException", // kExceptionSocketException
"java/net/SocketTimeoutException", // kExceptionSocketTimeoutException
"java/lang/IndexOutOfBoundsException", // kExceptionIndexOutOfBoundsException
"java/lang/IllegalStateException" // kExceptionIllegalStateException
"java/lang/NullPointerException" // kExceptionNullPointerException
"java/lang/IllegalStateException", // kExceptionIllegalStateException
"java/lang/NullPointerException" // kExceptionNullPointerException
};

static int _closeFd(JNIEnv * env, jobject fd, int handle);
Expand Down

0 comments on commit d9222ae

Please sign in to comment.