Remove InterceptedRequest.isHandled() method

This patch removes the InterceptedRequest.isHandled method. There's
always a single request interceptor who owns all the intercepted
requests and who know if they were handled.

References #115.
This commit is contained in:
Andrey Lushnikov
2017-07-24 23:37:28 -07:00
parent efa33c37b3
commit 5acd711b20
2 changed files with 0 additions and 11 deletions

View File

@@ -369,13 +369,6 @@ class InterceptedRequest {
headers: headers
});
}
/**
* @return {boolean}
*/
isHandled() {
return this._handled;
}
}
NetworkManager.Events = {