am 3bff4b4b: am 169944af: Remove unused methods to fix build.
* commit '3bff4b4ba37697781230cd7ede018287902509f9':
Remove unused methods to fix build.
diff --git a/sdcard/sdcard.c b/sdcard/sdcard.c
index 3091841..a136232 100644
--- a/sdcard/sdcard.c
+++ b/sdcard/sdcard.c
@@ -184,14 +184,6 @@
return strcasecmp(keyA, keyB) == 0;
}
-static int int_hash(void *key) {
- return (int) (uintptr_t) key;
-}
-
-static bool int_equals(void *keyA, void *keyB) {
- return keyA == keyB;
-}
-
/* Global data for all FUSE mounts */
struct fuse_global {
pthread_mutex_t lock;
@@ -1564,12 +1556,6 @@
return true;
}
-static bool remove_int_to_null(void *key, void *value, void *context) {
- Hashmap* map = context;
- hashmapRemove(map, key);
- return true;
-}
-
static int read_package_list(struct fuse_global* global) {
pthread_mutex_lock(&global->lock);