mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-20 01:43:56 +00:00
Cleanup
This commit is contained in:
@@ -14,7 +14,7 @@ import java.io.OutputStream
|
||||
* @param input the input stream to read from, must be a JAR
|
||||
* @param signatures the signatures
|
||||
*/
|
||||
class Patcher (
|
||||
class Patcher(
|
||||
input: InputStream,
|
||||
signatures: Array<Signature>,
|
||||
) {
|
||||
|
||||
@@ -12,7 +12,7 @@ import org.objectweb.asm.tree.MethodNode
|
||||
|
||||
private val logger = KotlinLogging.logger("MethodResolver")
|
||||
|
||||
internal class MethodResolver(private val classList: List<ClassNode>, private val signatures: Array<Signature>) {
|
||||
internal class MethodResolver(private val classList: List<ClassNode>, private val signatures: Array<Signature>) {
|
||||
fun resolve(): MutableMap<String, PatchData> {
|
||||
val patchData = mutableMapOf<String, PatchData>()
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package net.revanced.patcher.signature
|
||||
|
||||
import org.objectweb.asm.Type
|
||||
import org.objectweb.asm.tree.ParameterNode
|
||||
|
||||
/**
|
||||
* An ASM signature list for the Patcher.
|
||||
|
||||
Reference in New Issue
Block a user