From 39e3285a447d7fa754980894b21fedec5201aecc Mon Sep 17 00:00:00 2001 From: Robinson Date: Mon, 21 Aug 2023 01:48:19 +0200 Subject: [PATCH] now matches supertype parameter name --- src/dorkbox/cabParser/CabParser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dorkbox/cabParser/CabParser.kt b/src/dorkbox/cabParser/CabParser.kt index 0486b37..7479934 100644 --- a/src/dorkbox/cabParser/CabParser.kt +++ b/src/dorkbox/cabParser/CabParser.kt @@ -65,7 +65,7 @@ class CabParser { } } - override fun closeOutputStream(outputStream: OutputStream, cabFile: CabFileEntry) { + override fun closeOutputStream(outputStream: OutputStream, entry: CabFileEntry) { try { outputStream.close() }