From patchwork Thu Jan 16 01:18:11 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3,of,7] match: remove last traces of unused .missing callback From: Mads Kiilerich X-Patchwork-Id: 3341 Message-Id: To: mercurial-devel@selenic.com Date: Thu, 16 Jan 2014 02:18:11 +0100 # HG changeset patch # User Mads Kiilerich # Date 1380816081 -7200 # Thu Oct 03 18:01:21 2013 +0200 # Node ID cd51bc9bf14366c381799f953a75930f6293cafb # Parent 43617c49e7c0b0512e18f3fe9c5712a25e09cdbd match: remove last traces of unused .missing callback diff --git a/mercurial/match.py b/mercurial/match.py --- a/mercurial/match.py +++ b/mercurial/match.py @@ -131,8 +131,6 @@ class match(object): # If this is set, it will be called when a directory discovered by recursive # traversal is visited. traversedir = None - def missing(self, f): - pass def rel(self, f): '''Convert repo path back to path that is relative to cwd of matcher.''' return util.pathto(self._root, self._cwd, f)