~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Aaron Bentley
  • Date: 2007-08-07 23:59:24 UTC
  • mto: This revision was merged to the branch mainline in revision 2703.
  • Revision ID: aaron.bentley@utoronto.ca-20070807235924-u6a2as6t2h2qwlck
Remove my implementation of has_same_location

Show diffs side-by-side

added added

removed removed

Lines of Context:
805
805
        """Return True if this repository is flagged as a shared repository."""
806
806
        raise NotImplementedError(self.is_shared)
807
807
 
808
 
    def has_same_location(self, other_repository):
809
 
        """Determine whether this repo and other have the same location"""
810
 
        return (self.bzrdir.root_transport.base ==
811
 
                other_repository.bzrdir.root_transport.base)
812
 
 
813
808
    @needs_write_lock
814
809
    def reconcile(self, other=None, thorough=False):
815
810
        """Reconcile this repository."""