This commit is contained in:
Lucaskyy 2022-03-19 22:53:30 +01:00
parent fc64bbc32a
commit f45dd511f3
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89
3 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,7 @@ import java.io.OutputStream
* @param input the input stream to read from, must be a JAR * @param input the input stream to read from, must be a JAR
* @param signatures the signatures * @param signatures the signatures
*/ */
class Patcher ( class Patcher(
input: InputStream, input: InputStream,
signatures: Array<Signature>, signatures: Array<Signature>,
) { ) {

View File

@ -1,7 +1,6 @@
package net.revanced.patcher.signature package net.revanced.patcher.signature
import org.objectweb.asm.Type import org.objectweb.asm.Type
import org.objectweb.asm.tree.ParameterNode
/** /**
* An ASM signature list for the Patcher. * An ASM signature list for the Patcher.