manifest: remove Debug bounds on compare_manifest_tree

Summary: This bound was used for debugging during development, but it's no longer necessary.

Reviewed By: lmvasquezg

Differential Revision: D61556676

fbshipit-source-id: f2531b6ef7d194fceeb7b0154a26ee13ae1b4486
This commit is contained in:
Mark Juggurnauth-Thomas 2024-08-22 04:02:29 -07:00 committed by Facebook GitHub Bot
parent e61d4b7c9b
commit db567145c1

View File

@ -287,8 +287,8 @@ pub fn compare_manifest_tree<'a, M, Store>(
where where
Store: Send + Sync + 'static, Store: Send + Sync + 'static,
M: AsyncManifest<Store> + Send + Sync + 'static, M: AsyncManifest<Store> + Send + Sync + 'static,
M::TreeId: StoreLoadable<Store, Value = M> + Send + Sync + Eq + std::fmt::Debug + 'static, M::TreeId: StoreLoadable<Store, Value = M> + Send + Sync + Eq + 'static,
M::LeafId: Send + Sync + Eq + std::fmt::Debug + 'static, M::LeafId: Send + Sync + Eq + 'static,
M::TrieMapType: TrieMapOps<Store, Entry<M::TreeId, M::LeafId>> + Eq, M::TrieMapType: TrieMapOps<Store, Entry<M::TreeId, M::LeafId>> + Eq,
{ {
let base_manifest_ids: Vec<_> = base_manifest_ids.into_iter().map(Some).collect(); let base_manifest_ids: Vec<_> = base_manifest_ids.into_iter().map(Some).collect();