diff mercurial/manifest.py @ 6749:51b0e799352f

manifest: remove execf/linkf methods
author Matt Mackall <mpm@selenic.com>
date Thu, 26 Jun 2008 14:35:50 -0500
parents 86e8187b721a
children f67d1468ac50
line wrap: on
line diff
--- a/mercurial/manifest.py	Thu Jun 26 14:35:50 2008 -0500
+++ b/mercurial/manifest.py	Thu Jun 26 14:35:50 2008 -0500
@@ -18,12 +18,6 @@
         self._flags = flags
     def flags(self, f):
         return self._flags.get(f, "")
-    def execf(self, f):
-        "test for executable in manifest flags"
-        return "x" in self.flags(f)
-    def linkf(self, f):
-        "test for symlink in manifest flags"
-        return "l" in self.flags(f)
     def set(self, f, flags):
         self._flags[f] = flags
     def copy(self):