~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/decorator.py

  • Committer: Aaron Bentley
  • Date: 2007-08-20 13:07:12 UTC
  • mfrom: (2732 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2733.
  • Revision ID: abentley@panoramicfeedback.com-20070820130712-buopmg528zcgwyxc
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
        """See Transport.rmdir."""
138
138
        return self._decorated.rmdir(relpath)
139
139
 
140
 
    def should_cache(self):
141
 
        """See Transport.should_cache()."""
142
 
        return self._decorated.should_cache()
143
 
 
144
140
    def stat(self, relpath):
145
141
        """See Transport.stat()."""
146
142
        return self._decorated.stat(relpath)