This commit is contained in:
2024-10-28 18:27:16 +08:00
parent d6fbe6b59b
commit e6568480b7
38 changed files with 445 additions and 221 deletions

View File

@@ -42,7 +42,7 @@ public class RedisTools {
jedis.close();
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
Log.e(e);
return false;
}
return true;
@@ -66,7 +66,7 @@ public class RedisTools {
jedis.close();
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
Log.e(e);
return false;
}
return true;
@@ -83,7 +83,7 @@ public class RedisTools {
jedis.close();
} catch (Exception e) {
// TODO: handle exception
// e.printStackTrace();
// Log.e(e);
}
return value;
}
@@ -155,7 +155,7 @@ public class RedisTools {
}
properties.load(is);
} catch (IOException e) {
e.printStackTrace();
Log.e(e);
}
return properties;
}