Skip to content

Commit

Permalink
LocalVariableTable attribute: "Length" column always displayed "10" (…
Browse files Browse the repository at this point in the history
…Regression in 5.0)
  • Loading branch information
ingokegel committed Aug 20, 2016
1 parent 806727e commit 341463c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ abstract class LocalVariableAttributeDetailPane(services: BrowserServices) : Tab
override fun createValue(row: LocalVariableEntry) = row.startPc
})
add(object : NumberColumn<LocalVariableEntry>("Length") {
override fun createValue(row: LocalVariableEntry) = row.length
override fun createValue(row: LocalVariableEntry) = row.targetLength
})
add(object : NumberColumn<LocalVariableEntry>("Index") {
override fun createValue(row: LocalVariableEntry) = row.index
Expand Down

0 comments on commit 341463c

Please sign in to comment.