2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[#2792] Removed unused function

This commit is contained in:
Marcin Siodelski 2023-07-18 22:31:00 +02:00
parent 01c844ee14
commit a21effda55
2 changed files with 0 additions and 8 deletions

View File

@ -390,11 +390,6 @@ MySqlConnection::prepareStatements(const TaggedStatement* start_statement,
}
}
void MySqlConnection::clearStatements() {
statements_.clear();
text_statements_.clear();
}
/// @brief Destructor
MySqlConnection::~MySqlConnection() {
// Free up the prepared statements, ignoring errors. (What would we do

View File

@ -301,9 +301,6 @@ public:
void prepareStatements(const TaggedStatement* start_statement,
const TaggedStatement* end_statement);
/// @brief Clears prepared statements and text statements.
void clearStatements();
/// @brief Returns a prepared statement by an index
///
/// @tparam StatementIndex Type of the statement index enum.