MXS-2556 Rename configure -> post_configure
Rename config::Configuration::configure() to config::Configuration::post_configure(). Latter name makes it unambiguously clear at what point the function is called.
This commit is contained in:
@ -246,7 +246,7 @@ bool Specification::configure(Configuration& configuration, const MXS_CONFIG_PAR
|
||||
|
||||
if (configured)
|
||||
{
|
||||
configured = configuration.configure();
|
||||
configured = configuration.post_configure(params);
|
||||
}
|
||||
|
||||
return configured;
|
||||
@ -433,7 +433,7 @@ void Configuration::remove(Type* pValue)
|
||||
m_values.erase(it);
|
||||
}
|
||||
|
||||
bool Configuration::configure()
|
||||
bool Configuration::post_configure(const MXS_CONFIG_PARAMETER& params)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user