remove log statements

This commit is contained in:
MM20 2023-02-15 22:37:36 +01:00
parent 47fa1cbbed
commit eb757aa9c8
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -62,8 +62,6 @@ data class AdaptiveIconDrawableCompat(
val attrs = Xml.asAttributeSet(xmlParser)
if (!xmlParser.skipToNextTag()) return null
Log.d("MM20", "xmlParser.name: ${xmlParser.name}")
if (xmlParser.name != "adaptive-icon") {
return null
}
@ -87,10 +85,6 @@ data class AdaptiveIconDrawableCompat(
}
}
}
Log.d(
"MM20",
"background: $background, foreground: $foreground, monochrome: $monochrome"
)
if (foreground != null && background != null) {
return AdaptiveIconDrawableCompat(
background = background,