Skip to content

Commit

Permalink
Remove redundant #[allow(..._)]s
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jan 20, 2025
1 parent 97b94cb commit 1d7b1c6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions experiments/2024-12-09/src/topology/face.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,13 @@ impl Face {
self.vertices.iter()
}

#[allow(unused)] // code that uses it is being worked on
pub fn flip(&self, surfaces: &mut Store<Plane>) -> Self {
Self {
surface: surfaces.insert(self.surface.flip()),
vertices: self.vertices.clone(),
}
}

#[allow(unused)] // code that uses it is being worked on
pub fn translate(
&self,
offset: impl Into<Vector<3>>,
Expand Down

0 comments on commit 1d7b1c6

Please sign in to comment.