Delete unused function

This commit is contained in:
Syer10
2026-07-13 13:28:18 -04:00
parent 3d73836329
commit 4f0fbafc1d

View File

@@ -480,18 +480,6 @@ object Extension {
}
}
private fun extractAndCacheJarIcon(
zipFile: ZipFile,
pkgName: String,
) {
try {
val iconStream = ResourceArscIconParser.extractIcon(zipFile)
cacheIcon(pkgName, iconStream)
} catch (e: Exception) {
logger.warn(e) { "Failed to extract icon from JAR $pkgName" }
}
}
private fun cacheIcon(
pkgName: String,
inputStream: InputStream,