/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to versionedfiles.py

More work on roundtrip push support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    Tree,
24
24
    )
25
25
 
 
26
from bzrlib import (
 
27
    annotate,
 
28
    )
 
29
 
26
30
from bzrlib.versionedfile import (
27
31
    AbsentContentFactory,
28
32
    ChunkedContentFactory,
39
43
    def check(self, progressbar=None):
40
44
        return True
41
45
 
 
46
    def get_annotator(self):
 
47
        return annotate.Annotator(self)
 
48
 
42
49
    def iterkeys(self):
43
50
        for sha in self.object_store:
44
51
            if type(sha) == Commit:
84
91
    def check(self, progressbar=None):
85
92
        return True
86
93
 
 
94
    def get_annotator(self):
 
95
        return annotate.Annotator(self)
 
96
 
87
97
    def add_mpdiffs(self, records):
88
98
        raise NotImplementedError(self.add_mpdiffs)
89
99