mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
Ref T545 Removed redundant constructors that are now inherited.
This commit is contained in:
@@ -129,12 +129,8 @@ namespace BlackMisc
|
||||
CUrlList(listOfUrls), m_maxTrials(maxTrials)
|
||||
{ }
|
||||
|
||||
CFailoverUrlList::CFailoverUrlList(const CSequence<CUrl> &other, int maxTrials) :
|
||||
CUrlList(other), m_maxTrials(maxTrials)
|
||||
{ }
|
||||
|
||||
CFailoverUrlList::CFailoverUrlList(const CUrlList &urlIst) :
|
||||
CUrlList(urlIst)
|
||||
CFailoverUrlList::CFailoverUrlList(const CUrlList &urlIst, int maxTrials) :
|
||||
CUrlList(urlIst), m_maxTrials(maxTrials)
|
||||
{ }
|
||||
|
||||
CUrlList CFailoverUrlList::getWithoutFailed() const
|
||||
|
||||
Reference in New Issue
Block a user