Skip to content

Commit

Permalink
fix: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MrIkso committed Jan 5, 2025
1 parent d4f3419 commit 9a2482c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package jadx.plugins.kotlin.smap.model

object Constants {
const val KOTLIN_SOURCE_DEBUG_EXCEPTION = "Lkotlin/jvm/internal/SourceDebugExtension;"
const val KOTLIN_SOURCE_DEBUG_EXTENSION = "Lkotlin/jvm/internal/SourceDebugExtension;"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import jadx.plugins.kotlin.smap.model.Constants
import jadx.plugins.kotlin.smap.model.SMAP

fun ClassNode.getSourceDebugExtension(): SMAP? {
val annotation: IAnnotation? = getAnnotation(Constants.KOTLIN_SOURCE_DEBUG_EXCEPTION)
val annotation: IAnnotation? = getAnnotation(Constants.KOTLIN_SOURCE_DEBUG_EXTENSION)
return annotation?.run {
val smapParser = SMAPParser.parseOrNull(getParamsAsList("value")?.get(0)?.value.toString())
return smapParser
Expand Down

0 comments on commit 9a2482c

Please sign in to comment.