Remove comments in Downloadmanager

This commit is contained in:
Alexander Bock
2016-05-19 13:25:47 +02:00
parent 54fa1c8cbc
commit b964cbe1a2

View File

@@ -274,16 +274,7 @@ void DownloadManager::downloadRequestFilesAsync(const std::string& identifier,
if (_useMultithreadedDownload) {
std::thread t = std::thread(downloadFunction);
ghoul::thread::setPriority(t, ghoul::thread::ThreadPriority::Lowest);
//#ifdef WIN32
// std::thread::native_handle_type h = t.native_handle();
// SetPriorityClass(h, IDLE_PRIORITY_CLASS);
// SetThreadPriority(h, THREAD_PRIORITY_LOWEST);
//#else
// // TODO: Implement thread priority ---abock
//#endif
t.detach();
}
else