summaryrefslogtreecommitdiffstats
path: root/manifest.py
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-05-19 12:49:46 -0700
committerShawn O. Pearce <sop@google.com>2009-05-19 13:01:48 -0700
commit4cc70ce501321733a1b389e685e964d34b3b4cf5 (patch)
treed8d30b416faf3cbfe20d07ef3d0f020a16649791 /manifest.py
parent498a0e8a79ab76eeb6adc40f12b04d59820716f9 (diff)
downloadgit-repo-4cc70ce501321733a1b389e685e964d34b3b4cf5.tar.gz
Remove unused parsing support for <require commit=""/>
We haven't supported this in a while, but the parser was still here. Its all dead code, so strip it out. Signed-off-by: Shawn O. Pearce <sop@google.com>
Diffstat (limited to 'manifest.py')
-rw-r--r--manifest.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/manifest.py b/manifest.py
index da2bb25f..4b740e5a 100644
--- a/manifest.py
+++ b/manifest.py
@@ -307,11 +307,6 @@ class Manifest(object):
307 fetch=fetch, 307 fetch=fetch,
308 review=review, 308 review=review,
309 projectName=projectName) 309 projectName=projectName)
310
311 for n in node.childNodes:
312 if n.nodeName == 'require':
313 r.requiredCommits.append(self._reqatt(n, 'commit'))
314
315 return r 310 return r
316 311
317 def _ParseDefault(self, node): 312 def _ParseDefault(self, node):