cleanup: Always use single quotes
We have made good progress with transitioning to the new style, to the point where we can complete it with a final push. Start with changing the remaining places that still use double quotes. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2866>
This commit is contained in:

committed by
Marge Bot

parent
77fdfba45c
commit
6a22af83dc
@ -276,13 +276,13 @@ export const BroadbandModem = GObject.registerClass({
|
||||
}
|
||||
|
||||
_reloadOperatorName() {
|
||||
let newName = "";
|
||||
let newName = '';
|
||||
if (this.operator_name_3gpp && this.operator_name_3gpp.length > 0)
|
||||
newName += this.operator_name_3gpp;
|
||||
|
||||
if (this.operator_name_cdma && this.operator_name_cdma.length > 0) {
|
||||
if (newName != "")
|
||||
newName += ", ";
|
||||
if (newName != '')
|
||||
newName += ', ';
|
||||
newName += this.operator_name_cdma;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user