style: Use space after catch
We are currently inconsistent with whether or not to put a space after catch clauses. While the predominant style is to omit it, that's inconsistent with the style we use for any other statement. There's not really a good reason to stick with it, so switch to the style gjs/eslint default to. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/607
This commit is contained in:
@ -94,7 +94,7 @@ var ObjectManager = class {
|
||||
(initable, result) => {
|
||||
try {
|
||||
initable.init_finish(result);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
logError(e, 'could not initialize proxy for interface ' + interfaceName);
|
||||
|
||||
if (onFinished)
|
||||
@ -156,7 +156,7 @@ var ObjectManager = class {
|
||||
_onManagerProxyLoaded(initable, result) {
|
||||
try {
|
||||
initable.init_finish(result);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
logError(e, 'could not initialize object manager for object ' + this._serviceName);
|
||||
|
||||
this._tryToCompleteLoad();
|
||||
|
Reference in New Issue
Block a user