Skip to content
Snippets Groups Projects
Commit d3691d31 authored by Matt Mackall's avatar Matt Mackall
Browse files

context: remove islink and isexec methods

parent 86e8187b
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
......@@ -132,7 +132,7 @@
ui = repo.ui
fd = fcd.path()
binary = isbin(fcd) or isbin(fco) or isbin(fca)
symlink = fcd.islink() or fco.islink()
symlink = 'l' in fcd.flags() + fco.flags()
tool, toolpath = _picktool(repo, ui, fd, binary, symlink)
ui.debug(_("picked tool '%s' for %s (binary %s symlink %s)\n") %
(tool, fd, binary, symlink))
......@@ -180,9 +180,9 @@
env = dict(HG_FILE=fd,
HG_MY_NODE=short(mynode),
HG_OTHER_NODE=str(fco.changectx()),
HG_MY_ISLINK=fcd.islink(),
HG_OTHER_ISLINK=fco.islink(),
HG_BASE_ISLINK=fca.islink())
HG_MY_ISLINK='l' in fcd.flags(),
HG_OTHER_ISLINK='l' in fco.flags(),
HG_BASE_ISLINK='l' in fca.flags())
if tool == "internal:merge":
r = simplemerge.simplemerge(a, b, c, label=['local', 'other'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment