summaryrefslogtreecommitdiffstats
path: root/devtools/shared/platform/CacheEntry.sys.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/shared/platform/CacheEntry.sys.mjs')
-rw-r--r--devtools/shared/platform/CacheEntry.sys.mjs4
1 files changed, 2 insertions, 2 deletions
diff --git a/devtools/shared/platform/CacheEntry.sys.mjs b/devtools/shared/platform/CacheEntry.sys.mjs
index 761f0d2946..c417489add 100644
--- a/devtools/shared/platform/CacheEntry.sys.mjs
+++ b/devtools/shared/platform/CacheEntry.sys.mjs
@@ -98,10 +98,10 @@ export function getResponseCacheObject(request) {
"",
Ci.nsICacheStorage.OPEN_SECRETLY,
{
- onCacheEntryCheck: entry => {
+ onCacheEntryCheck: () => {
return Ci.nsICacheEntryOpenCallback.ENTRY_WANTED;
},
- onCacheEntryAvailable: (cacheEntry, isnew, status) => {
+ onCacheEntryAvailable: cacheEntry => {
if (cacheEntry) {
const cacheObject = buildResponseCacheObject(cacheEntry);
resolve(cacheObject);