cleanup: Avoid unnecessary braces

Our coding style has always been to avoid braces when all blocks
are single-lines.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/805
This commit is contained in:
Florian Müllner
2019-08-20 02:51:42 +02:00
committed by Georges Basile Stavracas Neto
parent 69f63dc94f
commit 67ea424525
38 changed files with 136 additions and 201 deletions

View File

@ -123,9 +123,8 @@ var NotificationsBox = GObject.registerClass({
}
let items = this._sources.entries();
for (let [source, obj] of items) {
for (let [source, obj] of items)
this._removeSource(source, obj);
}
}
_updateVisibility() {
@ -205,11 +204,10 @@ var NotificationsBox = GObject.registerClass({
}
_showSource(source, obj, box) {
if (obj.detailed) {
if (obj.detailed)
[obj.titleLabel, obj.countLabel] = this._makeNotificationDetailedSource(source, box);
} else {
else
[obj.titleLabel, obj.countLabel] = this._makeNotificationSource(source, box);
}
box.visible = obj.visible && (source.unseenCount > 0);
}
@ -704,9 +702,8 @@ var ScreenShield = class {
this._lockScreenScrollCounter += delta;
// 7 standard scrolls to lift up
if (this._lockScreenScrollCounter > 35) {
if (this._lockScreenScrollCounter > 35)
this._liftShield(true, 0);
}
return Clutter.EVENT_STOP;
}