Skip to content

Commit

Permalink
Make struct field public
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jun 26, 2023
1 parent 01b8e36 commit 1ce1670
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/fj-core/src/services/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ use super::State;
/// Errors that occurred while validating the objects inserted into the stores
#[derive(Default)]
pub struct Validation {
errors: BTreeMap<ObjectId, ValidationError>,
/// All unhandled validation errors
pub errors: BTreeMap<ObjectId, ValidationError>,
}

impl Drop for Validation {
Expand Down

0 comments on commit 1ce1670

Please sign in to comment.