1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-09 04:30:09 +00:00

Removed unnecessary check in macOS/iOS URL session cancel

This commit is contained in:
hogliux 2017-01-20 11:43:19 +00:00
parent 3370adae7b
commit 06dde9d927

View file

@ -1026,9 +1026,6 @@ public:
void cancel()
{
if (finished || isError())
return;
if (connection != nullptr)
connection->cancel();
}