mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 19:32:27 +01:00
Whitespace fixes.
--HG-- extra : rebase_source : 3717d85606cea3b4bab637300a06c54d0af0d8c6
This commit is contained in:
@@ -558,15 +558,16 @@ const Options = Module("options", {
|
||||
return (this._optionHash[name].scope & scope) && this._optionHash[name];
|
||||
|
||||
for (let opt in Iterator(options)) {
|
||||
try {
|
||||
if (opt.hasName(name))
|
||||
return (opt.scope & scope) && opt;
|
||||
}catch(e) {
|
||||
liberator.dump(options.__iterator__);
|
||||
liberator.dump(opt);
|
||||
liberator.reportError(e);
|
||||
throw e
|
||||
}
|
||||
try {
|
||||
if (opt.hasName(name))
|
||||
return (opt.scope & scope) && opt;
|
||||
}
|
||||
catch(e) {
|
||||
liberator.dump(options.__iterator__);
|
||||
liberator.dump(opt);
|
||||
liberator.reportError(e);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user