refactor: Use String instead of CharSequence for method parameter signature

This commit is contained in:
oSumAtrIX 2022-04-06 01:25:10 +02:00
parent 66a9b76845
commit 2777117da2
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4

View file

@ -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>?
)