有什么办法可以清空 JaversRepository?

Any way to empty JaversRepository?

在我的微服务中实现 JaVers 期间,我一直在对提交进行测试,以熟悉 JaVers。但是,现在我用 MongoRepository 配置它,它为我带来了我不需要的 JaVers 存储库中的所有提交。有什么方法可以从 JaVers 存储库中清空它(我想它一直存储在那里)?

MongoRepository 中有 clean() 方法,但它是包私有的。

void clean(){
    snapshotsCollection().deleteMany(new Document());
    headCollection().deleteMany(new Document());
}