fix: Suppress unused for addFiles

This commit is contained in:
Lucaskyy
2022-04-14 16:42:51 +02:00
committed by oSumAtrIX
parent 715a2ad025
commit 3d6a1d38f3

View File

@@ -41,6 +41,7 @@ class Patcher(
* @param allowedOverwrites A list of class types that are allowed to be overwritten. * @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. * @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( fun addFiles(
files: Iterable<File>, files: Iterable<File>,
allowedOverwrites: Iterable<String> = emptyList(), allowedOverwrites: Iterable<String> = emptyList(),