summaryrefslogtreecommitdiffstats
path: root/src/commands/rename_file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/rename_file.rs')
-rw-r--r--src/commands/rename_file.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/commands/rename_file.rs b/src/commands/rename_file.rs
index 011ee50..6907445 100644
--- a/src/commands/rename_file.rs
+++ b/src/commands/rename_file.rs
@@ -3,7 +3,6 @@ use std::path;
use crate::context::AppContext;
use crate::error::JoshutoResult;
use crate::ui::TuiBackend;
-use crate::util::load_child::LoadChild;
use super::command_line;
@@ -36,7 +35,6 @@ pub fn rename_file(context: &mut AppContext, dest: &path::Path) -> JoshutoResult
if let Some(path) = path {
_rename_file(context, path.as_path(), dest)?;
}
- LoadChild::load_child(context)?;
Ok(())
}