Skip to content

Commit

Permalink
fix: use Array instead of Iterable for methodParameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas authored and oSumAtrIX committed Jun 5, 2022
1 parent b44bf4c commit dfac8f0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -15,6 +15,6 @@ data class MethodSignature(
val name: String,
val returnType: String?,
val accessFlags: Int?,
val methodParameters: Iterable<String>?,
val methodParameters: Array<String>?,
val opcodes: Array<Opcode>?
)

0 comments on commit dfac8f0

Please sign in to comment.