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
@ -81,7 +81,7 @@ var PageIndicators = GObject.registerClass({
|
||||
children[i].destroy();
|
||||
}
|
||||
this._nPages = nPages;
|
||||
this.visible = (this._nPages > 1);
|
||||
this.visible = this._nPages > 1;
|
||||
}
|
||||
|
||||
setCurrentPage(currentPage) {
|
||||
|
Reference in New Issue
Block a user