Remove unused AbstractBoot

This commit is contained in:
djmaze 2020-09-16 20:01:47 +02:00
parent 71f6fb25e5
commit 03a40f3249
2 changed files with 1 additions and 9 deletions

View file

@ -15,17 +15,14 @@ import LanguageStore from 'Stores/Language';
import ThemeStore from 'Stores/Theme';
import { routeReload } from 'Knoin/Knoin';
import { AbstractBoot } from 'Knoin/AbstractBoot';
const Settings = rl.settings;
class AbstractApp extends AbstractBoot {
class AbstractApp {
/**
* @param {RemoteStorage|AdminRemoteStorage} Remote
*/
constructor() {
super();
this.isLocalAutocomplete = true;
this.lastErrorTime = 0;

View file

@ -1,5 +0,0 @@
export class AbstractBoot {
bootstart() {
/* no-empty */
}
}