Title: [159228] trunk/Source/WebKit2
Revision
159228
Author
[email protected]
Date
2013-11-13 13:22:04 -0800 (Wed, 13 Nov 2013)

Log Message

Remove redundant return after r159173
https://bugs.webkit.org/show_bug.cgi?id=124303

Reviewed by Geoff Garen.

* WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
(WebKit::WebPlatformStrategies::loadResourceSynchronously):
Remove redundant return.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (159227 => 159228)


--- trunk/Source/WebKit2/ChangeLog	2013-11-13 20:58:11 UTC (rev 159227)
+++ trunk/Source/WebKit2/ChangeLog	2013-11-13 21:22:04 UTC (rev 159228)
@@ -1,3 +1,14 @@
+2013-11-13  Tim Horton  <[email protected]>
+
+        Remove redundant return after r159173
+        https://bugs.webkit.org/show_bug.cgi?id=124303
+
+        Reviewed by Geoff Garen.
+
+        * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
+        (WebKit::WebPlatformStrategies::loadResourceSynchronously):
+        Remove redundant return.
+
 2013-11-13  Michał Pakuła vel Rutka  <[email protected]>
 
         Unreviewed EFL build fix after r159222.

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp (159227 => 159228)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2013-11-13 20:58:11 UTC (rev 159227)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2013-11-13 21:22:04 UTC (rev 159228)
@@ -275,8 +275,6 @@
     if (!WebProcess::shared().networkConnection()->connection()->sendSync(Messages::NetworkConnectionToWebProcess::PerformSynchronousLoad(loadParameters), Messages::NetworkConnectionToWebProcess::PerformSynchronousLoad::Reply(error, response, data), 0)) {
         response = ResourceResponse();
         error = internalError(request.url());
-
-        return;
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to