mirror of
https://github.com/corda/corda.git
synced 2025-02-07 11:30:22 +00:00
Prevent some serialization errors that occur due to serialization and deserialization of `ArrayList$SubList` found inside the `SessionState` data structures. To prevent this, an explicit `ArrayList` is used rather than a `List`. Overload the `List` operator functions so that `+` returns an `ArrayList` instead of a `List`. Create `toArrayList` for a few conversions.