# HG changeset patch # User Augie Fackler # Date 2015-01-07 20:55:02 # Node ID 399a8403cb54922a87f5811c6c54719de7335b00 # Parent b5346480a4909d56327f3fcfab51eca83c827a90 manifest: drop withflags() method, which is now unused diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -22,8 +22,6 @@ class manifestdict(dict): dict.__setitem__(self, k, v) def flags(self, f): return self._flags.get(f, "") - def withflags(self): - return set(self._flags.keys()) def setflag(self, f, flags): """Set the flags (symlink, executable) for path f.""" self._flags[f] = flags