From 3d6a1d38f339ce2c5d82b7ac46c208c6702d6d44 Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Thu, 14 Apr 2022 16:42:51 +0200 Subject: [PATCH] fix: Suppress unused for addFiles --- src/main/kotlin/app/revanced/patcher/Patcher.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/app/revanced/patcher/Patcher.kt b/src/main/kotlin/app/revanced/patcher/Patcher.kt index 3d03ba5..5dae689 100644 --- a/src/main/kotlin/app/revanced/patcher/Patcher.kt +++ b/src/main/kotlin/app/revanced/patcher/Patcher.kt @@ -41,6 +41,7 @@ class Patcher( * @param allowedOverwrites A list of class types that are allowed to be overwritten. * @param throwOnDuplicates If this is set to true, the patcher will throw an exception if a duplicate class has been found. */ + @Suppress("unused") fun addFiles( files: Iterable, allowedOverwrites: Iterable = emptyList(),