Remove unnecessary pub

This commit is contained in:
Hanno Braun 2023-05-02 11:42:08 +02:00
parent 305d7c6e25
commit 397e655b6e

View File

@ -10,7 +10,7 @@ use super::State;
/// Errors that occurred while validating the objects inserted into the stores
#[derive(Default)]
pub struct Validation(pub BTreeMap<ObjectId, ValidationError>);
pub struct Validation(BTreeMap<ObjectId, ValidationError>);
impl Drop for Validation {
fn drop(&mut self) {