mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-22 09:25:45 +01:00
normalise catch block parameter names
This commit is contained in:
@@ -563,7 +563,7 @@ vimperator.Buffer = function () //{{{
|
||||
urlSecurityCheck(data.href, principal,
|
||||
Components.interfaces.nsIScriptSecurityManager.DISALLOW_INHERIT_PRINCIPAL);
|
||||
}
|
||||
catch (ex)
|
||||
catch (e)
|
||||
{
|
||||
isFeed = false;
|
||||
}
|
||||
@@ -611,13 +611,13 @@ vimperator.Buffer = function () //{{{
|
||||
{
|
||||
var cacheEntryDescriptor = httpCacheSession.openCacheEntry(cacheKey, ACCESS_READ, false);
|
||||
}
|
||||
catch (ex)
|
||||
catch (e)
|
||||
{
|
||||
try
|
||||
{
|
||||
cacheEntryDescriptor = ftpCacheSession.openCacheEntry(cacheKey, ACCESS_READ, false);
|
||||
}
|
||||
catch (ex2) { }
|
||||
catch (e) { }
|
||||
}
|
||||
|
||||
var pageSize = []; // [0] bytes; [1] kbytes
|
||||
|
||||
Reference in New Issue
Block a user