-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6654289 introduced consolidation of UnitOptions into Sections during serialization. This preserved ordering of individual options within sections, but since a map was used to house the sections their order was nondeterministic. This change moves to preserving the first-seen order of the sections, as well as continuing to preserve the order of units with sections. For example: [UnitOption{A, B, b}, UnitOption{C, D, d}, UnitOption{A, Z, z}] will consistently be written as: [A] B=b Z=z [C] D=d
- Loading branch information
Showing
2 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters