removing a debug statement

This commit is contained in:
tibbi 2021-04-18 21:21:46 +02:00
parent 3d0a11d96f
commit 762220533c

View file

@ -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())
}