mercurial/dirstatemap.py
changeset 49040 3abf799b7b29
parent 48946 642e31cb55f0
child 49098 55c158a33fa5
equal deleted inserted replaced
49039:0940a45cc838 49040:3abf799b7b29
    83     #
    83     #
    84     # Use to allow for generic implementation of some method while still coping
    84     # Use to allow for generic implementation of some method while still coping
    85     # with minor difference between implementation.
    85     # with minor difference between implementation.
    86 
    86 
    87     def _dirs_incr(self, filename, old_entry=None):
    87     def _dirs_incr(self, filename, old_entry=None):
    88         """incremente the dirstate counter if applicable
    88         """increment the dirstate counter if applicable
    89 
    89 
    90         This might be a no-op for some subclass who deal with directory
    90         This might be a no-op for some subclasses who deal with directory
    91         tracking in a different way.
    91         tracking in a different way.
    92         """
    92         """
    93 
    93 
    94     def _dirs_decr(self, filename, old_entry=None, remove_variant=False):
    94     def _dirs_decr(self, filename, old_entry=None, remove_variant=False):
    95         """decremente the dirstate counter if applicable
    95         """decrement the dirstate counter if applicable
    96 
    96 
    97         This might be a no-op for some subclass who deal with directory
    97         This might be a no-op for some subclasses who deal with directory
    98         tracking in a different way.
    98         tracking in a different way.
    99         """
    99         """
   100 
   100 
   101     def _refresh_entry(self, f, entry):
   101     def _refresh_entry(self, f, entry):
   102         """record updated state of an entry"""
   102         """record updated state of an entry"""