diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-02-19 12:21:52 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-02-19 12:21:52 +0200 |
commit | 0a1c42ceb91cb9bfff861af4c876087c8988821f (patch) | |
tree | 47bf513d4ee7f977b721d1127c9c2cdc4f1a367e | |
parent | 68b7bd2d2d16bee66f3563977ab64fc9bb3172de (diff) |
jvm: trace function go away
-rw-r--r-- | src/jvm/jvm.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/jvm/jvm.c b/src/jvm/jvm.c index 49a6da8..d91c3a9 100644 --- a/src/jvm/jvm.c +++ b/src/jvm/jvm.c @@ -2071,12 +2071,6 @@ JNIEnv_ReleaseStringUTFChars(JNIEnv *env, jstring string, const char *utf) assert(env && string && utf); } -static void -trace(const char *const symbol) -{ - printf("trace: %s\n", symbol); -} - #define WRAP(x) create_wrapper(#x, x) static void |