mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-02 14:04:24 +02:00
refactor: Use String
instead of CharSequence
for method parameter signature
This commit is contained in:
parent
66a9b76845
commit
2777117da2
@ -15,6 +15,6 @@ data class MethodSignature(
|
|||||||
val name: String,
|
val name: String,
|
||||||
val returnType: String?,
|
val returnType: String?,
|
||||||
val accessFlags: Int?,
|
val accessFlags: Int?,
|
||||||
val methodParameters: Iterable<CharSequence>?,
|
val methodParameters: Iterable<String>?,
|
||||||
val opcodes: Array<Opcode>?
|
val opcodes: Array<Opcode>?
|
||||||
)
|
)
|
Loading…
x
Reference in New Issue
Block a user