Mercurial > hg
changeset 23758:399a8403cb54
manifest: drop withflags() method, which is now unused
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 07 Jan 2015 15:55:02 -0500 |
parents | b5346480a490 |
children | cdfc47266e53 |
files | mercurial/manifest.py |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/manifest.py Mon Dec 15 16:06:04 2014 -0500 +++ b/mercurial/manifest.py Wed Jan 07 15:55:02 2015 -0500 @@ -22,8 +22,6 @@ 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