mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 09:08:04 +01:00
refactor: Use String
instead of CharSequence
for method parameter signature
This commit is contained in:
parent
66a9b76845
commit
2777117da2
1 changed files with 1 additions and 1 deletions
|
@ -15,6 +15,6 @@ data class MethodSignature(
|
|||
val name: String,
|
||||
val returnType: String?,
|
||||
val accessFlags: Int?,
|
||||
val methodParameters: Iterable<CharSequence>?,
|
||||
val methodParameters: Iterable<String>?,
|
||||
val opcodes: Array<Opcode>?
|
||||
)
|
Loading…
Reference in a new issue