rust/hg-core/src/dirstate/dirstate_map.rs
changeset 48060 32ef647821b2
parent 48057 008959fcbfb2
child 48063 76f1c76186a1
equal deleted inserted replaced
48059:d5528ac9b4f2 48060:32ef647821b2
    62         self.copy_map.clear();
    62         self.copy_map.clear();
    63         self.non_normal_set = None;
    63         self.non_normal_set = None;
    64         self.other_parent_set = None;
    64         self.other_parent_set = None;
    65     }
    65     }
    66 
    66 
    67     pub fn set_v1_inner(&mut self, filename: &HgPath, entry: DirstateEntry) {
    67     pub fn set_entry(&mut self, filename: &HgPath, entry: DirstateEntry) {
    68         self.state_map.insert(filename.to_owned(), entry);
    68         self.state_map.insert(filename.to_owned(), entry);
    69     }
    69     }
    70 
    70 
    71     /// Add a tracked file to the dirstate
    71     /// Add a tracked file to the dirstate
    72     pub fn add_file(
    72     pub fn add_file(