Fix issue with Boolean freezing
This commit is contained in:
parent
ba8827708e
commit
2354da5f54
1 changed files with 1 additions and 1 deletions
|
|
@ -1151,7 +1151,7 @@
|
|||
(.writeLong out (.getMostSignificantBits x))
|
||||
(.writeLong out (.getLeastSignificantBits x)))
|
||||
|
||||
(freezer Boolean (if x (write-id out id-true) (write-id out id-false)))
|
||||
(freezer Boolean (if (boolean x) (write-id out id-true) (write-id out id-false)))
|
||||
(freezer (Class/forName "[B") (write-bytes out x))
|
||||
(freezer (Class/forName "[Ljava.lang.Object;") (write-objects out x))
|
||||
(freezer String (write-str out x))
|
||||
|
|
|
|||
Loading…
Reference in a new issue