| 1106 | } |
| 1107 | |
| 1108 | MMKV_JNI void enableCompareBeforeSet(JNIEnv *env, jobject instance) { |
| 1109 | MMKV *kv = getMMKV(env, instance); |
| 1110 | if (kv) { |
| 1111 | kv->enableCompareBeforeSet(); |
| 1112 | } |
| 1113 | } |
| 1114 | |
| 1115 | MMKV_JNI void disableCompareBeforeSet(JNIEnv *env, jobject instance) { |
| 1116 | MMKV *kv = getMMKV(env, instance); |
nothing calls this directly
no test coverage detected