Index: tools/presubmit.py |
diff --git a/tools/presubmit.py b/tools/presubmit.py |
index a835e61792caad2f6858412c2263e0ce78fc2877..078a09ace7e77caa64195efbf4c7fe61336f92fb 100755 |
--- a/tools/presubmit.py |
+++ b/tools/presubmit.py |
@@ -438,12 +438,6 @@ class SourceProcessor(SourceFileProcessor): |
return success |
-def CheckRuntimeVsNativesNameClashes(workspace): |
- code = subprocess.call( |
- [sys.executable, join(workspace, "tools", "check-name-clashes.py")]) |
- return code == 0 |
- |
- |
def CheckExternalReferenceRegistration(workspace): |
code = subprocess.call( |
[sys.executable, join(workspace, "tools", "external-reference-check.py")]) |
@@ -495,7 +489,6 @@ def Main(): |
print "Running copyright header, trailing whitespaces and " \ |
"two empty lines between declarations check..." |
success = SourceProcessor().Run(workspace) and success |
- success = CheckRuntimeVsNativesNameClashes(workspace) and success |
success = CheckExternalReferenceRegistration(workspace) and success |
if success: |
return 0 |