From 15f47a2415b681e948d390f656ff36a020f9b8b1 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 29 May 2024 13:48:27 +0200 Subject: [PATCH] Clean up imports --- .../src/validation/checks/multiple_references.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/crates/fj-core/src/validation/checks/multiple_references.rs b/crates/fj-core/src/validation/checks/multiple_references.rs index a44f51c98..3eabab854 100644 --- a/crates/fj-core/src/validation/checks/multiple_references.rs +++ b/crates/fj-core/src/validation/checks/multiple_references.rs @@ -1,9 +1,10 @@ use std::{any::type_name_of_val, collections::HashMap, fmt}; use crate::{ + geometry::Geometry, storage::Handle, topology::{Cycle, HalfEdge, Region, Sketch}, - validation::ValidationCheck, + validation::{ValidationCheck, ValidationConfig}, }; /// Object that should be exclusively owned by another, is not @@ -37,8 +38,8 @@ where impl ValidationCheck for MultipleReferencesToObject { fn check<'r>( object: &'r Sketch, - _: &'r crate::geometry::Geometry, - _: &'r crate::validation::ValidationConfig, + _: &'r Geometry, + _: &'r ValidationConfig, ) -> impl Iterator + 'r { let mut cycles = ReferenceCounter::new(); @@ -55,8 +56,8 @@ impl ValidationCheck for MultipleReferencesToObject { impl ValidationCheck for MultipleReferencesToObject { fn check<'r>( object: &'r Sketch, - _: &'r crate::geometry::Geometry, - _: &'r crate::validation::ValidationConfig, + _: &'r Geometry, + _: &'r ValidationConfig, ) -> impl Iterator + 'r { let mut half_edges = ReferenceCounter::new();