mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
cleanup: Remove some unhelpful unused arguments
Those unused arguments aren't bugs - unbeknownst to eslint, they all correspond to valid signal parameters - but they don't contribute anything to clarity, so just remove them anyway. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/627
This commit is contained in:
parent
0257de1b7e
commit
79cf3a6dd0
33 changed files with 70 additions and 70 deletions
|
|
@ -172,19 +172,19 @@ var BarLevel = class {
|
|||
cr.$dispose();
|
||||
}
|
||||
|
||||
_getCurrentValue(actor) {
|
||||
_getCurrentValue() {
|
||||
return this._value;
|
||||
}
|
||||
|
||||
_getOverdriveStart(actor) {
|
||||
_getOverdriveStart() {
|
||||
return this._overdriveStart;
|
||||
}
|
||||
|
||||
_getMinimumValue(actor) {
|
||||
_getMinimumValue() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
_getMaximumValue(actor) {
|
||||
_getMaximumValue() {
|
||||
return this._maxValue;
|
||||
}
|
||||
|
||||
|
|
@ -192,7 +192,7 @@ var BarLevel = class {
|
|||
this._value = value;
|
||||
}
|
||||
|
||||
_valueChanged(barLevel, value, property) {
|
||||
_valueChanged() {
|
||||
this._customAccessible.notify("accessible-value");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue