From 352ab08180b2444537baec02604b52587103ea93 Mon Sep 17 00:00:00 2001 From: Nicholas Gates Date: Mon, 13 Jan 2025 14:58:03 +0000 Subject: [PATCH] Add tests and Cargo fmt --- vortex-layout/src/segments.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/vortex-layout/src/segments.rs b/vortex-layout/src/segments.rs index 9ecf82264..87105f763 100644 --- a/vortex-layout/src/segments.rs +++ b/vortex-layout/src/segments.rs @@ -26,8 +26,6 @@ impl Deref for SegmentId { #[async_trait] pub trait AsyncSegmentReader: Send + Sync { /// Attempt to get the data associated with a given segment ID. - /// - /// TODO(ngates): should this accept multiple segment IDs? async fn get(&self, id: SegmentId) -> VortexResult; }