Mercurial > hg
changeset 24399:3993eb47ea49
bookmarks: remove useless diff()
Previous patches removed code paths referring it.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Thu, 19 Mar 2015 23:36:05 +0900 |
parents | c0096a2bd3ff |
children | 03c84c966ef5 |
files | mercurial/bookmarks.py |
diffstat | 1 files changed, 0 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/bookmarks.py Thu Mar 19 23:36:05 2015 +0900 +++ b/mercurial/bookmarks.py Thu Mar 19 23:36:05 2015 +0900 @@ -498,25 +498,6 @@ return 0 -def diff(ui, dst, src): - ui.status(_("searching for changed bookmarks\n")) - - smarks = src.listkeys('bookmarks') - dmarks = dst.listkeys('bookmarks') - - diff = sorted(set(smarks) - set(dmarks)) - for k in diff: - if ui.debugflag: - mark = smarks[k] - else: - mark = smarks[k][:12] - ui.write(" %-25s %s\n" % (k, mark)) - - if len(diff) <= 0: - ui.status(_("no changed bookmarks found\n")) - return 1 - return 0 - def validdest(repo, old, new): """Is the new bookmark destination a valid update from the old one""" repo = repo.unfiltered()