-
Notifications
You must be signed in to change notification settings - Fork 13
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
Bump core 610 #569
Merged
Merged
Bump core 610 #569
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
7ebafd1
Bump to powsybl-core 6.1.0
So-Fras bb03539
Remove joda-time library
So-Fras 3414284
Change artifact name from xml-converter to serde
So-Fras ee439a6
BranchStatus renamed OperatingStatus
So-Fras a350995
TwoSides and ThreeSides used instead of Branch.Side and ThreeWindings…
So-Fras 8bf0101
Remove remaining ThreeWindingsTransformer.Side
So-Fras a3f29bf
Deal with change of package name xml -> serde
So-Fras e03e8ea
Replace readUntilEndElement function (that does not exist anymore) by…
So-Fras 06e9f42
Merge branch 'main' into bump_core_610
So-Fras 3ea6d38
Update reading metadata following XmlUtil changes
flo-dup 7c9ef63
Fix unit test
flo-dup 2ce5227
Rename methods to clarify use
flo-dup 35551ec
Fix comparing to have the diff in the logs
flo-dup 67a07d9
Fix checkstyle
flo-dup c5a8420
Following review comments: use ThreeSides functions to refactor code
So-Fras 93ffc71
Merge branch 'main' into bump_core_610
So-Fras a01ff58
Fix code smell regarding lambda / method reference
So-Fras 44c1aa7
Merge branch 'bump_core_610' of https://github.com/powsybl/powsybl-di…
So-Fras f61f827
Merge branch 'main' into bump_core_610
So-Fras c178ded
Revert "Fix comparing to have the diff in the logs"
flo-dup 53bdc32
Revert "Fix checkstyle"
flo-dup aa7a2cb
Improve getNextSideNum(...) function
So-Fras 8ccd7f9
Merge branch 'main' into bump_core_610
So-Fras File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
could be simplified by
return (sideNum + steps + 2) % 3 + 1;
but not sure if this is understandable...?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.
It is shrewd! And I think it is understandable (one can simply check the formula with examples if needed).