-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Extract LegMode from TraverseMode #4443
Conversation
ee105cf
to
2367dd5
Compare
.../routing/algorithm/filterchain/deletionflagger/RemoveParkAndRideWithMostlyWalkingFilter.java
Outdated
Show resolved
Hide resolved
I reviewed the commits from @t2gran. Looks good for me |
3e4e030
to
119f34a
Compare
Codecov ReportBase: 58.43% // Head: 58.43% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## dev-2.x #4443 +/- ##
===========================================
Coverage 58.43% 58.43%
+ Complexity 11425 11386 -39
===========================================
Files 1500 1501 +1
Lines 59913 59813 -100
Branches 6821 6832 +11
===========================================
- Hits 35011 34954 -57
+ Misses 22840 22790 -50
- Partials 2062 2069 +7
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
20316e3
to
3432220
Compare
3432220
to
bb36319
Compare
Revert parts of opentripplanner#4443
Summary
Currently
TraverseMode
is used in the mode for aLeg
. Extract a separate enum, which is used for otput, so that we can simplify theTraverseMode
and make it completely internal to the a* classes.