From ccd11141673f58aa08c7a13af9f12c7285837836 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Tue, 21 Apr 2015 08:57:38 +0200 Subject: [PATCH] drop obsolete "return" after throw --- library/Requests/Transport/cURL.php | 1 - 1 file changed, 1 deletion(-) diff --git a/library/Requests/Transport/cURL.php b/library/Requests/Transport/cURL.php index 678ab7363..b3b81f5ba 100755 --- a/library/Requests/Transport/cURL.php +++ b/library/Requests/Transport/cURL.php @@ -289,7 +289,6 @@ public function process_response($response, $options) { if (curl_errno($this->fp)) { throw new Requests_Exception('cURL error ' . curl_errno($this->fp) . ': ' . curl_error($this->fp), 'curlerror', $this->fp); - return; } $this->info = curl_getinfo($this->fp);