cleanup: Avoid unnecessary parentheses
Extra parentheses usually add noise rather than clarity, so avoid them. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/805
This commit is contained in:

committed by
Georges Basile Stavracas Neto

parent
ebf77748a8
commit
e44adb92cf
@ -66,7 +66,7 @@ var OsdMonitorLabeler = class {
|
||||
|
||||
_trackClient(client) {
|
||||
if (this._client)
|
||||
return (this._client == client);
|
||||
return this._client == client;
|
||||
|
||||
this._client = client;
|
||||
this._clientWatchId = Gio.bus_watch_name(Gio.BusType.SESSION, client, 0, null,
|
||||
|
Reference in New Issue
Block a user