##// END OF EJS Templates
remotefilelog: remove pointless return statement from constructor...
Martin von Zweigbergk -
r41396:784ab13b default
parent child Browse files
Show More
@@ -452,8 +452,8 b' class remotefilectx(context.filectx):'
452 class remoteworkingfilectx(context.workingfilectx, remotefilectx):
452 class remoteworkingfilectx(context.workingfilectx, remotefilectx):
453 def __init__(self, repo, path, filelog=None, workingctx=None):
453 def __init__(self, repo, path, filelog=None, workingctx=None):
454 self._ancestormap = None
454 self._ancestormap = None
455 return super(remoteworkingfilectx, self).__init__(repo, path,
455 super(remoteworkingfilectx, self).__init__(repo, path, filelog,
456 filelog, workingctx)
456 workingctx)
457
457
458 def parents(self):
458 def parents(self):
459 return remotefilectx.parents(self)
459 return remotefilectx.parents(self)
General Comments 0
You need to be logged in to leave comments. Login now