Mercurial > hg-stable
diff mercurial/match.py @ 8680:b6511055d37b
match: ignore return of match.bad
All users returned false, return can now be dropped
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 31 May 2009 17:54:18 -0500 |
parents | 43598055bae8 |
children | cc7da5aae4cd |
line wrap: on
line diff
--- a/mercurial/match.py Sun May 31 17:54:18 2009 -0500 +++ b/mercurial/match.py Sun May 31 17:54:18 2009 -0500 @@ -83,12 +83,8 @@ def bad(self, f, msg): '''callback for each explicit file that can't be found/accessed, with an error message - - return True to keep file in results, False to discard - - default behavior is to silently keep ''' - return True + pass def dir(self, f): pass def missing(self, f):