File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ class OTACloudProcessInterface: public CloudProcess {
87
87
virtual void handleMessage (Message*);
88
88
// virtual CloudProcess::State getState();
89
89
// virtual void hook(State s, void* action);
90
- inline virtual void setConnection (ConnectionHandler * connection) { (void )connection; }
91
90
virtual void update () { handleMessage (nullptr ); }
92
91
93
92
inline void approveOta () { policies |= Approved; }
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class OTADefaultCloudProcessInterface: public OTACloudProcessInterface {
45
45
OTADefaultCloudProcessInterface (MessageStream *ms, Client* client=nullptr );
46
46
virtual ~OTADefaultCloudProcessInterface ();
47
47
48
- inline virtual void setConnection (ConnectionHandler * connection) override { _connection = connection; }
48
+ inline void setConnection (ConnectionHandler * connection) { _connection = connection; }
49
49
50
50
protected:
51
51
virtual State startOTA () override ;
You can’t perform that action at this time.
0 commit comments