Rename C++ fields and internal methods
Summary: From sonar* to flipper*. Reviewed By: priteshrnandgaonkar Differential Revision: D9944461 fbshipit-source-id: 870997e3d1d5aaef73dd445e6d94615f93fe6abc
This commit is contained in:
committed by
Facebook Github Bot
parent
a14bbc0421
commit
1a076f1300
@@ -21,7 +21,7 @@ class FlipperConnectionMock : public FlipperConnection {
|
||||
sent_[method] = params;
|
||||
}
|
||||
|
||||
void receive(const std::string& method, const SonarReceiver& receiver)
|
||||
void receive(const std::string& method, const FlipperReceiver& receiver)
|
||||
override {
|
||||
receivers_[method] = receiver;
|
||||
}
|
||||
@@ -30,7 +30,7 @@ class FlipperConnectionMock : public FlipperConnection {
|
||||
override {}
|
||||
|
||||
std::map<std::string, folly::dynamic> sent_;
|
||||
std::map<std::string, SonarReceiver> receivers_;
|
||||
std::map<std::string, FlipperReceiver> receivers_;
|
||||
};
|
||||
|
||||
} // namespace flipper
|
||||
|
||||
Reference in New Issue
Block a user