From f902c53be7ba3aebb780ca7f46351025d6049567 Mon Sep 17 00:00:00 2001 From: gorhill Date: Fri, 10 Jun 2016 13:28:04 -0400 Subject: [PATCH] remove stray prototype code from last commit (84b81f751cc74d0d7db4d4c9ccb8a9139e97893d) --- platform/firefox/vapi-background.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index 584160b1a..5ab680dd9 100644 --- a/platform/firefox/vapi-background.js +++ b/platform/firefox/vapi-background.js @@ -2016,15 +2016,6 @@ var httpObserver = { // https://github.com/gorhill/uBlock/issues/959 // Try to synthesize a pending request from a behind-the-scene request. synthesizePendingRequest: function(channel, rawtype) { - var data = this.channelDataFromChannel(channel); - if ( data !== null ) { - return { - frameId: data[0], - parentFrameId: data[1], - tabId: data[2], - rawtype: data[3] - }; - } var tabId = this.tabIdFromChannel(channel); if ( tabId === vAPI.noTabId ) { return null;