# HG changeset patch # User Drew Gottlieb # Date 1426285382 25200 # Node ID 4c7c6beade1adec5925eb59b6a8dbcb8ae149394 # Parent f263814c72acfcca51bc40b697a00680dd8e9664 manifest: have context's dirs() call its manifest's dirs() This lets the context's dirs() method be agnostic towards any alternate manifest implementations. diff -r f263814c72ac -r 4c7c6beade1a mercurial/context.py --- a/mercurial/context.py Fri Mar 13 15:19:54 2015 -0700 +++ b/mercurial/context.py Fri Mar 13 15:23:02 2015 -0700 @@ -266,12 +266,9 @@ diffopts = patch.diffopts(self._repo.ui, opts) return patch.diff(self._repo, ctx2, self, match=match, opts=diffopts) - @propertycache - def _dirs(self): - return scmutil.dirs(self._manifest) + def dirs(self): + return self._manifest.dirs() - def dirs(self): - return self._dirs def dirty(self, missing=False, merge=True, branch=True): return False