fix: migrate to changes of patcher

This commit is contained in:
oSumAtrIX
2022-06-22 03:38:11 +02:00
parent f694542d64
commit b30c7375a7
3 changed files with 5 additions and 6 deletions

View File

@@ -1,7 +1,6 @@
package app.revanced.utils.signature
import app.revanced.patcher.Patcher
import org.jf.dexlib2.iface.Method
object Signature {
@@ -49,7 +48,7 @@ object Signature {
*/
}
private fun Method.toStr(): String {
return "${this.name}(${this.parameterTypes.joinToString("")})${this.returnType}"
}
//private fun Method.toStr(): String {
// return "${this.name}(${this.parameterTypes.joinToString("")})${this.returnType}"
//}
}