From 762220533cac51ea4427fb38fe0e8821df5dca30 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 18 Apr 2021 21:21:46 +0200 Subject: [PATCH] removing a debug statement --- .../com/simplemobiletools/gallery/pro/helpers/MediaFetcher.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/MediaFetcher.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/MediaFetcher.kt index 1dd87325d..9ab822705 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/MediaFetcher.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/MediaFetcher.kt @@ -127,7 +127,6 @@ class MediaFetcher(val context: Context) { if (cursor?.moveToFirst() == true) { do { val path = cursor.getStringValue(Images.ImageColumns.DATA) ?: continue - mydebug("path $path") parents.add(path.getParentPath()) } while (cursor.moveToNext()) }