~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/remote.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-24 01:08:12 UTC
  • mfrom: (3948.3.9 deprecation)
  • Revision ID: pqm@pqm.ubuntu.com-20090324010812-lrfx6zoeu7q0fftv
(mbp) remove code deprecated up to 1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    urlutils,
35
35
    )
36
36
from bzrlib.smart import client, medium
37
 
from bzrlib.symbol_versioning import (deprecated_method, one_four)
 
37
from bzrlib.symbol_versioning import (
 
38
    deprecated_method,
 
39
    )
38
40
 
39
41
 
40
42
class _SmartStat(object):
166
168
    def get_smart_medium(self):
167
169
        return self._get_connection()
168
170
 
169
 
    @deprecated_method(one_four)
170
 
    def get_shared_medium(self):
171
 
        return self._get_shared_connection()
172
 
 
173
171
    def _remote_path(self, relpath):
174
172
        """Returns the Unicode version of the absolute path for relpath."""
175
173
        return self._combine_paths(self._path, relpath)