-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[Trivial] Fix build references to deleted ServerHandlerImp #4592
Conversation
* Commits 0b812cd (XRPLF#4427) and 11e914f (XRPLF#4516) conflict. The first added references to `ServerHandlerImp` in files outside of that class's organizational unit (which is technically incorrect). The second removed `ServerHandlerImp`, but was not up to date with develop. This results in the build failing in all circumstances. * Fixes the build by changing references to `ServerHandlerImp` to the more correct `ServerHandler`.
@@ -64,8 +64,8 @@ | |||
#include <ripple/resource/ResourceManager.h> | |||
#include <ripple/rpc/BookChanges.h> | |||
#include <ripple/rpc/DeliveredAmount.h> | |||
#include <ripple/rpc/ServerHandler.h> | |||
#include <ripple/rpc/impl/RPCHelpers.h> |
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.
If we strictly follow the lexicographic order, shouldn't the import order be reversed?
alphabetically, S
comes after i
. While ordering the imports, are we keeping all the impl
imports together?
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 depends on whether the lexicographic order is case insensitive or not. Lower case "i" comes after capital "S".
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.
okay, didn't think of that :)
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.
A bit late, but 👍 from me.
* Commits 0b812cd (XRPLF#4427) and 11e914f (XRPLF#4516) conflict. The first added references to `ServerHandlerImp` in files outside of that class's organizational unit (which is technically incorrect). The second removed `ServerHandlerImp`, but was not up to date with develop. This results in the build failing. * Fixes the build by changing references to `ServerHandlerImp` to the more correct `ServerHandler`.
* Commits 0b812cd (XRPLF#4427) and 11e914f (XRPLF#4516) conflict. The first added references to `ServerHandlerImp` in files outside of that class's organizational unit (which is technically incorrect). The second removed `ServerHandlerImp`, but was not up to date with develop. This results in the build failing. * Fixes the build by changing references to `ServerHandlerImp` to the more correct `ServerHandler`.
* Commits 0b812cd (XRPLF#4427) and 11e914f (XRPLF#4516) conflict. The first added references to `ServerHandlerImp` in files outside of that class's organizational unit (which is technically incorrect). The second removed `ServerHandlerImp`, but was not up to date with develop. This results in the build failing. * Fixes the build by changing references to `ServerHandlerImp` to the more correct `ServerHandler`.
High Level Overview of Change
ServerHandlerImp
to the more correctServerHandler
.Context of Change
ServerHandlerImp
toServerHandler
#4516) conflict. The first added references toServerHandlerImp
in files outside of that class's organizational unit (which is technically incorrect). The second removedServerHandlerImp
, but was not up to date with develop. This results in the build failing in all circumstances.Type of Change
Before / After
Before:
rippled
doesn't build.After: It does.
Future Tasks
Dedicating resources to wiping out all of the levelization issues across the board would help with this kind of thing.