Mercurial > public > mercurial-scm > hg-stable
diff mercurial/context.py @ 6744:d3691d31fc9c
context: remove islink and isexec methods
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 26 Jun 2008 13:52:16 -0500 |
parents | 86e8187b721a |
children | f6c00b17387c |
line wrap: on
line diff
--- a/mercurial/context.py Thu Jun 26 13:46:34 2008 -0500 +++ b/mercurial/context.py Thu Jun 26 13:52:16 2008 -0500 @@ -238,8 +238,6 @@ def filerev(self): return self._filerev def filenode(self): return self._filenode def flags(self): return self._changectx.flags(self._path) - def isexec(self): return 'x' in self.flags() - def islink(self): return 'l' in self.flags() def filelog(self): return self._filelog def rev(self):