/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 bzrlib/repofmt/knitrepo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-09-12 22:26:27 UTC
  • mfrom: (2805.6.8 knits)
  • Revision ID: pqm@pqm.ubuntu.com-20070912222627-zvqit350mf6gvrbh
(robertc) Make expensive content checks during knit adds optional and disable them for commit. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        # This class isn't deprecated
75
75
        pass
76
76
 
77
 
    def _inventory_add_lines(self, inv_vf, revid, parents, lines):
78
 
        inv_vf.add_lines_with_ghosts(revid, parents, lines)
 
77
    def _inventory_add_lines(self, inv_vf, revid, parents, lines, check_content):
 
78
        inv_vf.add_lines_with_ghosts(revid, parents, lines,
 
79
            check_content=check_content)
79
80
 
80
81
    @needs_read_lock
81
82
    def _all_revision_ids(self):