# HG changeset patch # User Martin von Zweigbergk # Date 1547791678 28800 # Node ID 784ab13b340f59d11094f3c65d6ca95b9a65c1ee # Parent 431cf2c8c83969a68d132d6ba92af1998e147927 remotefilelog: remove pointless return statement from constructor Differential Revision: https://phab.mercurial-scm.org/D5630 diff -r 431cf2c8c839 -r 784ab13b340f hgext/remotefilelog/remotefilectx.py --- a/hgext/remotefilelog/remotefilectx.py Tue Jan 15 22:57:09 2019 +0800 +++ b/hgext/remotefilelog/remotefilectx.py Thu Jan 17 22:07:58 2019 -0800 @@ -452,8 +452,8 @@ class remoteworkingfilectx(context.workingfilectx, remotefilectx): def __init__(self, repo, path, filelog=None, workingctx=None): self._ancestormap = None - return super(remoteworkingfilectx, self).__init__(repo, path, - filelog, workingctx) + super(remoteworkingfilectx, self).__init__(repo, path, filelog, + workingctx) def parents(self): return remotefilectx.parents(self)