narrow: remove hack to read narowspec from shared .hg directory
authorMartin von Zweigbergk <martinvonz@google.com>
Fri, 21 Sep 2018 09:34:41 -0700
changeset 39758 543f26ece6cf
parent 39757 97f2992c26f6
child 39759 aeb2812f304d
narrow: remove hack to read narowspec from shared .hg directory This was another leftover from 576eef1ab43d (narrow: move .hg/narrowspec to .hg/store/narrowspec (BC), 2018-08-02), in addition to 623081f2abc2 (narrow: remove hack to write narrowspec to shared .hg directory, 2018-09-12). Differential Revision: https://phab.mercurial-scm.org/D4692
mercurial/localrepo.py
--- a/mercurial/localrepo.py	Fri Sep 21 11:43:46 2018 -0400
+++ b/mercurial/localrepo.py	Fri Sep 21 09:34:41 2018 -0700
@@ -1032,11 +1032,7 @@
 
         A tuple of (includes, excludes).
         """
-        source = self
-        if self.shared():
-            from . import hg
-            source = hg.sharedreposource(self)
-        return narrowspec.load(source)
+        return narrowspec.load(self)
 
     @storecache(narrowspec.FILENAME)
     def _narrowmatch(self):