Skip to content

Commit

Permalink
Fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
bgw committed Nov 8, 2024
1 parent fefb077 commit 988e6fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions crates/next-api/src/operation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use crate::{
};

/// A derived type of Entrypoints, but with VcOperation<Endpoint> for every endpoint.

Check warning on line 11 in crates/next-api/src/operation.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

unclosed HTML tag `Endpoint`
///
/// This is needed to call `write_to_disk` which expects an `VcOperation<Endpoint>`.
/// This is important as VcOperations can be stored in the VersionedContentMap and can be exposed to
/// JS via napi.
Expand Down
4 changes: 1 addition & 3 deletions crates/next-api/src/versioned_content_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ impl VersionedContentMap {
return Vc::cell(None);
};
// Need to reconnect the operation to the map
let compute_entry = compute_entry.connect();

compute_entry
compute_entry.connect()
}
}

0 comments on commit 988e6fa

Please sign in to comment.