Index: gclient_utils.py |
diff --git a/gclient_utils.py b/gclient_utils.py |
index 3297e63872c20363d4810660c23160b95f55806c..248bfb095fe69b781328b8e1307522843492ff54 100644 |
--- a/gclient_utils.py |
+++ b/gclient_utils.py |
@@ -293,14 +293,6 @@ def SubprocessCallAndFilter(command, |
raise Error(msg) |
-def IsUsingGit(root, paths): |
- """Returns True if we're using git to manage any of our checkouts. |
- |entries| is a list of paths to check.""" |
- for path in paths: |
- if os.path.exists(os.path.join(root, path, '.git')): |
- return True |
- return False |
- |
def FindGclientRoot(from_dir, filename='.gclient'): |
"""Tries to find the gclient root.""" |
path = os.path.realpath(from_dir) |