comparison rust/hg-cpython/src/dirstate.rs @ 48391:b80e5e75d51e

dirstate: remove `lastnormaltime` mechanism This is now redundant with the new, simpler `mtime_boundary` one. Differential Revision: https://phab.mercurial-scm.org/D11795
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 25 Oct 2021 11:36:22 +0200
parents 269ff8978086
children ea0467ed76aa
comparison
equal deleted inserted replaced
48390:322525db4c98 48391:b80e5e75d51e
52 dmap: DirstateMap, 52 dmap: DirstateMap,
53 root_dir: PyObject, 53 root_dir: PyObject,
54 matcher: PyObject, 54 matcher: PyObject,
55 ignorefiles: PyList, 55 ignorefiles: PyList,
56 check_exec: bool, 56 check_exec: bool,
57 last_normal_time: (u32, u32),
58 list_clean: bool, 57 list_clean: bool,
59 list_ignored: bool, 58 list_ignored: bool,
60 list_unknown: bool, 59 list_unknown: bool,
61 collect_traversed_dirs: bool 60 collect_traversed_dirs: bool
62 ) 61 )