comparison mercurial/repo.py @ 12035:ff1044230bca

repository: drop unused rjoin() method This method was introduced by cfeeac24fc1e but grepping the history does not reveal any call. Extensions may use it but the method intent is not even clear to me.
author Patrick Mezard <pmezard@gmail.com>
date Sun, 22 Aug 2010 13:17:34 +0200
parents 25e572394f5c
children d747774ca9da
comparison
equal deleted inserted replaced
12034:3bfd425f1472 12035:ff1044230bca
33 def local(self): 33 def local(self):
34 return False 34 return False
35 35
36 def cancopy(self): 36 def cancopy(self):
37 return self.local() 37 return self.local()
38
39 def rjoin(self, path):
40 url = self.url()
41 if url.endswith('/'):
42 return url + path
43 else:
44 return url + '/' + path