Simplification

This commit is contained in:
M66B
2023-12-12 18:21:23 +01:00
parent 8482338f2b
commit 125a47efd8
13 changed files with 27 additions and 26 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(new File(context.getFilesDir(), "images"));
File dir = Helper.ensureExists(context.getFilesDir(), "images");
return new File(dir, id + "_" + Math.abs(source.hashCode()) + extension);
}