| 1098 | } |
| 1099 | |
| 1100 | MMKV_JNI jboolean disableAutoExpire(JNIEnv *env, jobject instance) { |
| 1101 | MMKV *kv = getMMKV(env, instance); |
| 1102 | if (kv) { |
| 1103 | return (jboolean) kv->disableAutoKeyExpire(); |
| 1104 | } |
| 1105 | return (jboolean) false; |
| 1106 | } |
| 1107 | |
| 1108 | MMKV_JNI void enableCompareBeforeSet(JNIEnv *env, jobject instance) { |
| 1109 | MMKV *kv = getMMKV(env, instance); |
nothing calls this directly
no test coverage detected