Removed unused private field in FailoverStrategy class.
This commit is contained in:
parent
f8f89a0946
commit
89608ade3b
2 changed files with 0 additions and 2 deletions
|
@ -34,7 +34,6 @@ FailoverStrategy::FailoverStrategy(const std::vector<Url*> &urls, int retryPause
|
||||||
m_retryPause(retryPause),
|
m_retryPause(retryPause),
|
||||||
m_active(-1),
|
m_active(-1),
|
||||||
m_index(0),
|
m_index(0),
|
||||||
m_remaining(0),
|
|
||||||
m_listener(listener)
|
m_listener(listener)
|
||||||
{
|
{
|
||||||
for (const Url *url : urls) {
|
for (const Url *url : urls) {
|
||||||
|
|
|
@ -66,7 +66,6 @@ private:
|
||||||
const int m_retryPause;
|
const int m_retryPause;
|
||||||
int m_active;
|
int m_active;
|
||||||
int m_index;
|
int m_index;
|
||||||
int m_remaining;
|
|
||||||
IStrategyListener *m_listener;
|
IStrategyListener *m_listener;
|
||||||
std::vector<Client*> m_pools;
|
std::vector<Client*> m_pools;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue