Title: [224824] trunk/Source/WebCore
Revision
224824
Author
[email protected]
Date
2017-11-14 11:40:02 -0800 (Tue, 14 Nov 2017)

Log Message

Remove some accidentally checked-in commented-out code.

Unreviewed.

* workers/service/server/SWServer.cpp:
(WebCore::SWServer::fireInstallEvent):
(WebCore::SWServer::fireActivateEvent):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (224823 => 224824)


--- trunk/Source/WebCore/ChangeLog	2017-11-14 19:15:23 UTC (rev 224823)
+++ trunk/Source/WebCore/ChangeLog	2017-11-14 19:40:02 UTC (rev 224824)
@@ -1,3 +1,13 @@
+2017-11-14  Brady Eidson  <[email protected]>
+
+        Remove some accidentally checked-in commented-out code.
+
+        Unreviewed.
+
+        * workers/service/server/SWServer.cpp:
+        (WebCore::SWServer::fireInstallEvent):
+        (WebCore::SWServer::fireActivateEvent):
+
 2017-11-14  Alex Christensen  <[email protected]>
 
         Clean up old URL parser remnants

Modified: trunk/Source/WebCore/workers/service/server/SWServer.cpp (224823 => 224824)


--- trunk/Source/WebCore/workers/service/server/SWServer.cpp	2017-11-14 19:15:23 UTC (rev 224823)
+++ trunk/Source/WebCore/workers/service/server/SWServer.cpp	2017-11-14 19:40:02 UTC (rev 224824)
@@ -329,12 +329,6 @@
 
 void SWServer::fireInstallEvent(SWServerWorker& worker)
 {
-//    auto* worker = m_workersByID.get(serviceWorkerIdentifier);
-//    if (!worker) {
-//        LOG_ERROR("Request to fire install event on a worker that cannot be found in the server");
-//        return;
-//    }
-
     auto* connection = SWServerToContextConnection::connectionForIdentifier(worker.contextConnectionIdentifier());
     if (!connection) {
         LOG_ERROR("Request to fire install event on a worker whose context connection does not exist");
@@ -346,12 +340,6 @@
 
 void SWServer::fireActivateEvent(SWServerWorker& worker)
 {
-//    auto* worker = m_workersByID.get(serviceWorkerIdentifier);
-//    if (!worker) {
-//        LOG_ERROR("Request to fire install event on a worker that cannot be found in the server");
-//        return;
-//    }
-
     auto* connection = SWServerToContextConnection::connectionForIdentifier(worker.contextConnectionIdentifier());
     if (!connection) {
         LOG_ERROR("Request to fire install event on a worker whose context connection does not exist");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to