-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
model: Remove the remaining uses of SortedSet / SortedMap from classes which get serialized #8705
base: main
Are you sure you want to change the base?
Conversation
I did a quick search across the code base, and I've found a use of
|
DependencyReference(1), | ||
DependencyReference(2) | ||
) | ||
val fragments = sortedSetOf( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commit message: Probably prefer style
over test
as the commit type.
Note to myself: Test in AnalyzerResultBuilder now fails because the assertion now checks: |
Signed-off-by: Frank Viernau <[email protected]>
Improve readability, and while at it make use of the default value for scope roots in two of the calls. Signed-off-by: Frank Viernau <[email protected]>
Only sort on serialization for human readability and reproducibility. Also, remove the now unused comparator, which was used only by tests before. Signed-off-by: Frank Viernau <[email protected]>
9ece42c
to
a523522
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8705 +/- ##
============================================
- Coverage 67.79% 67.74% -0.06%
Complexity 1164 1164
============================================
Files 243 243
Lines 7711 7710 -1
Branches 861 861
============================================
- Hits 5228 5223 -5
- Misses 2127 2131 +4
Partials 356 356
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
See individual commits.
Fixes #6235.