| 1113 | } |
| 1114 | |
| 1115 | MMKV_JNI void disableCompareBeforeSet(JNIEnv *env, jobject instance) { |
| 1116 | MMKV *kv = getMMKV(env, instance); |
| 1117 | if (kv) { |
| 1118 | kv->disableCompareBeforeSet(); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | MMKV_JNI bool isCompareBeforeSetEnabled(JNIEnv *env, jobject instance) { |
| 1123 | MMKV *kv = getMMKV(env, instance); |
nothing calls this directly
no test coverage detected