MXS-2068: Remove unused code
This commit is contained in:
@ -32,16 +32,6 @@ class SessionCommand
|
|||||||
SessionCommand(const SessionCommand&);
|
SessionCommand(const SessionCommand&);
|
||||||
SessionCommand& operator=(const SessionCommand&);
|
SessionCommand& operator=(const SessionCommand&);
|
||||||
public:
|
public:
|
||||||
/**
|
|
||||||
* @brief Mark reply as received
|
|
||||||
*/
|
|
||||||
void mark_reply_received();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Check if the session command has received a reply
|
|
||||||
* @return True if the reply is already received
|
|
||||||
*/
|
|
||||||
bool is_reply_received() const;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the command type of the session command
|
* @brief Get the command type of the session command
|
||||||
|
|||||||
@ -19,16 +19,6 @@
|
|||||||
namespace maxscale
|
namespace maxscale
|
||||||
{
|
{
|
||||||
|
|
||||||
void SessionCommand::mark_reply_received()
|
|
||||||
{
|
|
||||||
m_reply_sent = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool SessionCommand::is_reply_received() const
|
|
||||||
{
|
|
||||||
return m_reply_sent;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t SessionCommand::get_command() const
|
uint8_t SessionCommand::get_command() const
|
||||||
{
|
{
|
||||||
return m_command;
|
return m_command;
|
||||||
|
|||||||
Reference in New Issue
Block a user