MXS-1703: Remove unused functions & old comments

Made obsolete with previous refactoring.
This commit is contained in:
Esa Korhonen
2018-03-07 14:18:09 +02:00
parent d17c3b8ab7
commit b18207282d

View File

@ -714,34 +714,10 @@ extern "C"
} }
void* info_copy_func(const void *val)
{
ss_dassert(val);
MySqlServerInfo *old_val = (MySqlServerInfo*)val;
MySqlServerInfo *new_val = new (std::nothrow) MySqlServerInfo;
if (new_val)
{
*new_val = *old_val;
}
return new_val;
}
void info_free_func(void *val)
{
if (val)
{
MySqlServerInfo *old_val = (MySqlServerInfo*)val;
delete old_val;
}
}
/** /**
* @brief Helper function that initializes the server info hashtable * Initialize the server info hashtable
* *
* @param handle MariaDB monitor handle * @param handle MariaDB monitor handle
* @return True on success, false if initialization failed. At the moment
* initialization can only fail if memory allocation fails.
*/ */
void init_server_info(MariaDBMonitor *handle) void init_server_info(MariaDBMonitor *handle)
{ {