Skip to content

Commit

Permalink
Add properties to readResolve() (#524)
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp Homann <[email protected]>
  • Loading branch information
PhilippHomann and Philipp Homann authored Jun 23, 2023
1 parent 3a4456e commit 7a4699e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ protected Object readResolve() {
if (queuedContexts == null) { // this field was added after the initial version if this class
queuedContexts = new ArrayList<>();
}
if (properties == null) {
properties = new ArrayList<>();
}
this.repairLabels();
return this;
}
Expand Down

0 comments on commit 7a4699e

Please sign in to comment.