updates to bootstrapper

This commit is contained in:
Matt Hill
2021-06-16 18:01:06 -06:00
committed by Aiden McClelland
parent 9ad59a4d1a
commit 416d622df4
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
}
}