mirror of
https://github.com/netbirdio/gomobile-tvos-fork.git
synced 2026-05-22 18:43:29 -07:00
bind: sanitize parameter names
Package names, type names and method names are already sanitized. Extend that to parameter names as well. Change-Id: I408024c5e2f9561c37e8059a2b53199ee1afaef6 Reviewed-on: https://go-review.googlesource.com/31519 Reviewed-by: David Crawshaw <crawshaw@golang.org>
This commit is contained in:
Vendored
+2
-2
@@ -240,8 +240,8 @@ Java_go_java_Runnable__1_1New(JNIEnv *env, jclass clazz) {
|
||||
JNIEXPORT void JNICALL
|
||||
Java_go_java_Runnable_run(JNIEnv* env, jobject __this__) {
|
||||
int32_t o = go_seq_to_refnum_go(env, __this__);
|
||||
int32_t _this = go_seq_to_refnum(env, __this__);
|
||||
proxyjava_Runnable_Run(o, _this);
|
||||
int32_t _this_ = go_seq_to_refnum(env, __this__);
|
||||
proxyjava_Runnable_Run(o, _this_);
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
|
||||
Reference in New Issue
Block a user