Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-3
-
None
-
None
Description
data = []
for (i in 0..255)
store = (data as Byte[]).encodeBase64().toString()
restored = store.decodeBase64()
// assert restored == data as byte[] // todo: not working!
-> Type conflict
the byte[] to Byte[] coercions behave unexpectedly in both directions