Minor cleanup

This commit is contained in:
David Majdandžić
2023-03-31 17:13:39 +02:00
parent 17a1c10c05
commit fb310fa53a
3 changed files with 4 additions and 7 deletions

View File

@@ -11,10 +11,6 @@ export default class PersistentPromise {
});
}
getPromise(): Promise<any> {
return this.promise;
}
resolve(value?: any): void {
if (this.promiseResolve) {
this.promiseResolve(value);