| Index: tools/presubmit.py
|
| diff --git a/tools/presubmit.py b/tools/presubmit.py
|
| index 3be9caf0613bbed3ad27de751f6e1d8413b73c0c..f9ae2bdea465846fe8212d9bd568844ca3de9f57 100755
|
| --- a/tools/presubmit.py
|
| +++ b/tools/presubmit.py
|
| @@ -396,13 +396,6 @@ class SourceProcessor(SourceFileProcessor):
|
| print "Total violating files: %s" % violations
|
| return success
|
|
|
| -
|
| -def CheckExternalReferenceRegistration(workspace):
|
| - code = subprocess.call(
|
| - [sys.executable, join(workspace, "tools", "external-reference-check.py")])
|
| - return code == 0
|
| -
|
| -
|
| def _CheckStatusFileForDuplicateKeys(filepath):
|
| comma_space_bracket = re.compile(", *]")
|
| lines = []
|
| @@ -503,7 +496,6 @@ def Main():
|
| print "Running copyright header, trailing whitespaces and " \
|
| "two empty lines between declarations check..."
|
| success &= SourceProcessor().Run(workspace)
|
| - success &= CheckExternalReferenceRegistration(workspace)
|
| success &= CheckStatusFiles(workspace)
|
| if success:
|
| return 0
|
|
|