From 5e8b7bd06dda12dca2c9ad792fb6f75fce6a2a7f Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 9 May 2023 16:31:53 -0600 Subject: [PATCH] Replace todo with unimplemented to reduce distractions --- crates/copilot/src/copilot.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/copilot/src/copilot.rs b/crates/copilot/src/copilot.rs index f5aa0f9430..9ccd9c445d 100644 --- a/crates/copilot/src/copilot.rs +++ b/crates/copilot/src/copilot.rs @@ -1170,7 +1170,7 @@ mod tests { } fn mtime(&self) -> std::time::SystemTime { - todo!() + unimplemented!() } fn path(&self) -> &Arc { @@ -1178,23 +1178,23 @@ mod tests { } fn full_path(&self, _: &AppContext) -> PathBuf { - todo!() + unimplemented!() } fn file_name<'a>(&'a self, _: &'a AppContext) -> &'a std::ffi::OsStr { - todo!() + unimplemented!() } fn is_deleted(&self) -> bool { - todo!() + unimplemented!() } fn as_any(&self) -> &dyn std::any::Any { - todo!() + unimplemented!() } fn to_proto(&self) -> rpc::proto::File { - todo!() + unimplemented!() } } @@ -1204,7 +1204,7 @@ mod tests { } fn load(&self, _: &AppContext) -> Task> { - todo!() + unimplemented!() } fn buffer_reloaded( @@ -1216,7 +1216,7 @@ mod tests { _: std::time::SystemTime, _: &mut AppContext, ) { - todo!() + unimplemented!() } } }