If a structure containing an instance of Utf8 is passivated, it errors on activation.
Add the following method as SystemUser, and commit
category: 'Storing and Loading' classmethod: Utf8 loadFrom: passiveObj | sz ba | sz := passiveObj readSize . ba := ByteArray new: sz . ba loadFrom: passiveObj . ^ self withBytes: ba . %
Last updated: 3/11/22