diff mercurial/localrepo.py @ 43712:f965b1027fb0

commit: drop unused "vdirs" argument from repo.checkcommitpatterns() Differential Revision: https://phab.mercurial-scm.org/D7438
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 15 Nov 2019 14:47:31 -0800
parents 7f443cce2972
children 7eb701e355bd
line wrap: on
line diff
--- a/mercurial/localrepo.py	Fri Nov 15 14:41:00 2019 -0800
+++ b/mercurial/localrepo.py	Fri Nov 15 14:47:31 2019 -0800
@@ -2789,7 +2789,7 @@
 
         return fparent1
 
-    def checkcommitpatterns(self, wctx, vdirs, match, status, fail):
+    def checkcommitpatterns(self, wctx, match, status, fail):
         """check for commit arguments that aren't committable"""
         if match.isexact() or match.prefix():
             matched = set(status.modified + status.added + status.removed)
@@ -2838,8 +2838,6 @@
             match = matchmod.always()
 
         if not force:
-            vdirs = []
-            match.explicitdir = vdirs.append
             match.bad = fail
 
         # lock() for recent changelog (see issue4368)
@@ -2868,7 +2866,7 @@
 
             # make sure all explicit patterns are matched
             if not force:
-                self.checkcommitpatterns(wctx, vdirs, match, status, fail)
+                self.checkcommitpatterns(wctx, match, status, fail)
 
             cctx = context.workingcommitctx(
                 self, status, text, user, date, extra