Skip to content
Snippets Groups Projects
Commit d73b42f9 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

dirstate-item: use `any_tracked` more

This simplify more code.
parent a88ecdee
No related branches found
No related tags found
No related merge requests found
......@@ -305,7 +305,7 @@
dirstatev1 format. It would make sense to ultimately deprecate it in
favor of the more "semantic" attributes.
"""
if not (self._p1_tracked or self._p2_tracked or self._wc_tracked):
if not self.any_tracked:
return b'?'
return self.v1_state()
......@@ -383,7 +383,7 @@
def v1_size(self):
"""return a "size" suitable for v1 serialization"""
if not (self._p1_tracked or self._p2_tracked or self._wc_tracked):
if not self.any_tracked:
# the object has no state to record, this is -currently-
# unsupported
raise RuntimeError('untracked item')
......@@ -406,7 +406,7 @@
def v1_mtime(self):
"""return a "mtime" suitable for v1 serialization"""
if not (self._p1_tracked or self._p2_tracked or self._wc_tracked):
if not self.any_tracked:
# the object has no state to record, this is -currently-
# unsupported
raise RuntimeError('untracked item')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment