/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/versionedfile.py

  • Committer: Robert Collins
  • Date: 2006-03-02 11:01:15 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060302110115-c7d315c0f2165ac7
stub out a check for knits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        not present in file history."""
79
79
        raise NotImplementedError(self.add_lines)
80
80
 
 
81
    def check(self, progress_bar=None):
 
82
        """Check the versioned file for integrity."""
 
83
        raise NotImplementedError(self.check)
 
84
 
81
85
    def clear_cache(self):
82
86
        """Remove any data cached in the versioned file object."""
83
87