Removed unused code

This commit is contained in:
Alex Zolotarev 2011-11-01 18:50:58 +02:00 committed by Alex Zolotarev
parent b461c5a60f
commit 708cc3c5d6

View file

@ -33,19 +33,6 @@
Platform & gPlatform = GetPlatform();
DownloadManager & gMgr = GetDownloadManager();
string GetHostFromUrl(string const & url)
{
size_t start = url.find("://");
if (start != string::npos)
start += 3;
else
start = 0;
size_t end = url.find('/', start);
if (end == string::npos)
end = url.size();
return url.substr(start, end - start);
}
template<int TMaxDownloadsNum>
struct DlObserver
{