minor cleanup and add comment

This commit is contained in:
Helium314 2024-05-27 20:21:59 +02:00
parent 7473d5b32b
commit 0f503389b3
4 changed files with 3 additions and 5 deletions

View file

@ -11,7 +11,6 @@ import java.io.IOException
import java.io.InputStream
import java.io.UnsupportedEncodingException
import java.net.URLDecoder
import java.util.HashMap
import java.util.jar.JarFile
import kotlin.RuntimeException
@ -73,7 +72,7 @@ object JarUtils {
fun close(stream: Closeable?) {
try {
stream?.close()
} catch (e: IOException) {
} catch (_: IOException) {
}
}