Skip to content

Commit

Permalink
Add Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
alonalbert committed May 2, 2024
1 parent 266d19e commit c8ad705
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ internal class DexDumpParser(text: String) {
}

private class DexClass(val name: String, val methods: List<DexMethod>) {
override fun toString() = "class $name\n${methods.joinToString("\n\n") { it.toString() }}"
override fun toString() = "class $name\n${methods.joinToString("\n") { it.toString() }}"
}

private class DexMethod(val className: String, val name: String, val type: String, val code: String) {
Expand Down

0 comments on commit c8ad705

Please sign in to comment.