Remove redundant super calls

This commit is contained in:
Josh Johnson 2018-04-25 09:15:45 +01:00
parent 85c0a488cd
commit 18456153ff
2 changed files with 0 additions and 32 deletions

View file

@ -20,20 +20,4 @@ export default class WrappedInput extends WrappedElement {
get value() {
return super.value;
}
conceal() {
super.conceal();
}
reveal() {
super.reveal();
}
enable() {
super.enable();
}
disable() {
super.disable();
}
}

View file

@ -36,22 +36,6 @@ export default class WrappedSelect extends WrappedElement {
this.appendDocFragment(fragment);
}
conceal() {
super.conceal();
}
reveal() {
super.reveal();
}
enable() {
super.enable();
}
disable() {
super.disable();
}
appendDocFragment(fragment) {
this.element.innerHTML = '';
this.element.appendChild(fragment);