Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
imrn99 committed Jan 2, 2025
1 parent 2602627 commit f76711c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion honeycomb-core/src/cmap/dim2/sews/one.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use stm::{atomically, StmResult, Transaction};
use stm::{atomically, Transaction};

use crate::{
attributes::UnknownAttributeStorage,
Expand Down
3 changes: 2 additions & 1 deletion honeycomb-core/src/cmap/dim2/sews/two.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use stm::{atomically, StmResult, Transaction};
use stm::{atomically, Transaction};

use crate::{
attributes::{AttributeStorage, UnknownAttributeStorage},
Expand Down Expand Up @@ -147,6 +147,7 @@ impl<T: CoordsFloat> CMap2<T> {
}

/// 2-sew implementation.
#[allow(clippy::too_many_lines)]
pub(super) fn force_two_sew(&self, lhs_dart_id: DartIdType, rhs_dart_id: DartIdType) {
atomically(|trans| {
let b1lhs_dart_id = self.betas[(1, lhs_dart_id)].read(trans)?;
Expand Down

0 comments on commit f76711c

Please sign in to comment.