Refactoring

This commit is contained in:
M66B
2023-12-13 07:21:15 +01:00
parent 9f1bab8e19
commit 9569b0e28e
14 changed files with 25 additions and 28 deletions

View File

@@ -791,7 +791,7 @@ class ImageHelper {
@NonNull
static File getCacheFile(Context context, long id, String source, String extension) {
File dir = Helper.ensureExists(context.getFilesDir(), "images");
File dir = Helper.ensureExists(context, "images");
return new File(dir, id + "_" + Math.abs(source.hashCode()) + extension);
}