Idiomatic scala - var -> val
This commit is contained in:
parent
28fac634bc
commit
ba0c120c77
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ class EncodingSuite extends FunSuite {
|
|||
bar.set(0, 11)
|
||||
val revBar = root.getRev().getBar()
|
||||
revBar.setInt8Field(111)
|
||||
var boolList = revBar.initBoolList(2)
|
||||
val boolList = revBar.initBoolList(2)
|
||||
boolList.set(0, false)
|
||||
boolList.set(1, true)
|
||||
|
||||
|
|
Loading…
Reference in a new issue