updates to bootstrapper

This commit is contained in:
Matt Hill
2021-06-16 18:01:06 -06:00
committed by Aiden McClelland
parent e210d24754
commit 91b053a6a0
3 changed files with 18 additions and 26 deletions

View File

@@ -18,9 +18,4 @@ export class MockBootstrapper<T> implements Bootstrapper<T> {
this.sequence = cache.sequence
this.data = cache.data
}
async clear (): Promise<void> {
this.sequence = 0
this.data = { } as T
}
}