mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 14:33:31 +02:00
Remove unused variable
This commit is contained in:
parent
5aa5bca8f7
commit
dabea21d66
1 changed files with 1 additions and 3 deletions
|
@ -364,7 +364,6 @@ void Resource::handleDownloadProgress(uint64_t bytesReceived, uint64_t bytesTota
|
|||
}
|
||||
|
||||
void Resource::handleReplyFinished() {
|
||||
QString u = _url.path();
|
||||
Q_ASSERT(_request);
|
||||
|
||||
auto result = _request->getResult();
|
||||
|
@ -387,8 +386,7 @@ void Resource::handleReplyFinished() {
|
|||
_request = nullptr;
|
||||
|
||||
if (result == ResourceRequest::Result::TIMEOUT) {
|
||||
qDebug() << "Timed out loading" << _url <<
|
||||
"received" << _bytesReceived << "total" << _bytesTotal;
|
||||
qDebug() << "Timed out loading" << _url << "received" << _bytesReceived << "total" << _bytesTotal;
|
||||
} else {
|
||||
qDebug() << "Error loading " << _url;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue