Mercurial > hg-stable
changeset 48064:29aa633815db
rust: Remove some obsolete doc-comments
About parameters that have been removed or replaced
Differential Revision: https://phab.mercurial-scm.org/D11492
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Thu, 23 Sep 2021 15:29:38 +0200 |
parents | 76f1c76186a1 |
children | 2ac0e6b23222 |
files | rust/hg-core/src/dirstate_tree/dispatch.rs |
diffstat | 1 files changed, 1 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
--- a/rust/hg-core/src/dirstate_tree/dispatch.rs Thu Sep 23 15:26:33 2021 +0200 +++ b/rust/hg-core/src/dirstate_tree/dispatch.rs Thu Sep 23 15:29:38 2021 +0200 @@ -46,11 +46,6 @@ ) -> Result<(), DirstateV2ParseError>; /// Add or change the information associated to a given file. - /// - /// `old_state` is the state in the entry that `get` would have returned - /// before this call, or `EntryState::Unknown` if there was no such entry. - /// - /// `entry.state` should never be `EntryState::Unknown`. fn add_file( &mut self, filename: &HgPath, @@ -62,25 +57,15 @@ ) -> Result<(), DirstateError>; /// Mark a file as "removed" (as in `hg rm`). - /// - /// `old_state` is the state in the entry that `get` would have returned - /// before this call, or `EntryState::Unknown` if there was no such entry. - /// - /// `size` is not actually a size but the 0 or -1 or -2 value that would be - /// put in the size field in the dirstate-v1 format. fn remove_file( &mut self, filename: &HgPath, in_merge: bool, ) -> Result<(), DirstateError>; - /// Drop information about this file from the map if any, and return - /// whether there was any. + /// Drop information about this file from the map if any. /// /// `get` will now return `None` for this filename. - /// - /// `old_state` is the state in the entry that `get` would have returned - /// before this call, or `EntryState::Unknown` if there was no such entry. fn drop_file(&mut self, filename: &HgPath) -> Result<(), DirstateError>; /// Among given files, mark the stored `mtime` as ambiguous if there is one