Remove data migration stuff that doesn't need to exist
This commit is contained in:
parent
46555ec807
commit
1bc141d91a
3 changed files with 2 additions and 16 deletions
|
|
@ -1 +1 @@
|
||||||
export default {};
|
export default {};
|
||||||
|
|
|
||||||
|
|
@ -17,11 +17,6 @@ export class ItemHandler extends Item {
|
||||||
return this.proxyTargets[this.type];
|
return this.proxyTargets[this.type];
|
||||||
};
|
};
|
||||||
|
|
||||||
async migrateSystemData() {
|
|
||||||
if (!this.fn?.migrateSystemData) return;
|
|
||||||
this.fn?.migrateSystemData.bind(this)();
|
|
||||||
};
|
|
||||||
|
|
||||||
async proxyFunction(funcName, ...args) {
|
async proxyFunction(funcName, ...args) {
|
||||||
if (!this.fn?.[funcName]) return;
|
if (!this.fn?.[funcName]) return;
|
||||||
return await this.fn?.[funcName].bind(this)(...args);
|
return await this.fn?.[funcName].bind(this)(...args);
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1 @@
|
||||||
import { ItemHandler } from "./Handler.mjs";
|
export default {};
|
||||||
|
|
||||||
/** @this {ItemHandler} */
|
|
||||||
async function migrateSystemData() {
|
|
||||||
this.system
|
|
||||||
};
|
|
||||||
|
|
||||||
export default {
|
|
||||||
migrateSystemData,
|
|
||||||
};
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue