Rename methods

resetConnection() -> reset()
This commit is contained in:
Vojtěch Erben
2018-11-20 10:09:40 +01:00
parent 6e6ad28a1f
commit 8f2fef23e4
10 changed files with 12 additions and 12 deletions

View File

@@ -257,10 +257,10 @@ bool SessionImpl::hasTransactionIsolation(Poco::UInt32 ti) const
}
void SessionImpl::resetConnection()
void SessionImpl::reset()
{
if (_connected)
_handle.resetConnection();
_handle.reset();
}