From 77cd40d7d98c4fed9151850d79fda2b297c1972a Mon Sep 17 00:00:00 2001 From: sholderbach Date: Thu, 24 Apr 2025 17:50:10 +0200 Subject: [PATCH] Hide update_plugin_file impl detail This is currently automatically performed as part of `merge_delta` so don't expose it, so nobody tries to call it again. --- crates/nu-protocol/src/engine/engine_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-protocol/src/engine/engine_state.rs b/crates/nu-protocol/src/engine/engine_state.rs index e3ccd63fa2..d21393c9b1 100644 --- a/crates/nu-protocol/src/engine/engine_state.rs +++ b/crates/nu-protocol/src/engine/engine_state.rs @@ -502,7 +502,7 @@ impl EngineState { } #[cfg(feature = "plugin")] - pub fn update_plugin_file( + fn update_plugin_file( &self, updated_items: Vec, ) -> Result<(), ShellError> {