From 77536cce8f911b641b34bfac3ee41e871b7be378 Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Sun, 20 Mar 2022 20:39:47 +0100 Subject: [PATCH] style: remove tab --- src/main/kotlin/net/revanced/patcher/util/Io.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/net/revanced/patcher/util/Io.kt b/src/main/kotlin/net/revanced/patcher/util/Io.kt index 3de94ae..d995bf9 100644 --- a/src/main/kotlin/net/revanced/patcher/util/Io.kt +++ b/src/main/kotlin/net/revanced/patcher/util/Io.kt @@ -17,7 +17,7 @@ object Io { if (e.name.endsWith(".class")) { val classNode = ClassNode() ClassReader(jar.readAllBytes()).accept(classNode, ClassReader.EXPAND_FRAMES) - this.add(classNode) + this.add(classNode) } jar.closeEntry() }