changeset 17922 | 7f5dab94e48c |
parent 17857 | 8ef4b022d562 |
child 17993 | 1a6f8820eb71 |
--- a/mercurial/localrepo.py Fri Nov 09 14:49:30 2012 -0800 +++ b/mercurial/localrepo.py Wed Nov 07 16:21:39 2012 -0600 @@ -265,15 +265,12 @@ @filecache('bookmarks') def _bookmarks(self): - return bookmarks.read(self) + return bookmarks.bmstore(self) @filecache('bookmarks.current') def _bookmarkcurrent(self): return bookmarks.readcurrent(self) - def _writebookmarks(self, marks): - bookmarks.write(self) - def bookmarkheads(self, bookmark): name = bookmark.split('@', 1)[0] heads = []