This is a pure virtual method. Every derived class needs to implement it, from what I can see, all derived classes have the same implementation with only 1-line code return *m_rawResponse;. But this method is not used anywhere, can we just delete it?
I found this problem when working on improving storage test coverage, this line of code can never be reached.

This is a pure virtual method. Every derived class needs to implement it, from what I can see, all derived classes have the same implementation with only 1-line code
return *m_rawResponse;. But this method is not used anywhere, can we just delete it?I found this problem when working on improving storage test coverage, this line of code can never be reached.