diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index ff64689e0..4a09bedc8 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -520,32 +520,12 @@ impl Document {
path: Option
,
force: bool,
) -> Result<(), anyhow::Error> {
- self.save_impl::, _>(None, path, force)
- }
-
- pub fn format_and_save(
- &mut self,
- formatting: Option,
- path: Option,
- force: bool,
- ) -> anyhow::Result<()>
- where
- F: Future