| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| index 386df35a2ccce7309539a2f7934233cd535da261..56048f875fd2d9514cde2864b79b5272070c40ae 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_mock.py
|
| @@ -21,12 +21,6 @@ class MockGit(object):
|
| self._executive = executive or MockExecutive()
|
| self._local_commits = []
|
|
|
| - def add_all(self, pathspec=None):
|
| - if not pathspec:
|
| - pathspec = self.checkout_root
|
| - for path in self._filesystem.glob(pathspec):
|
| - self.add_list(self._filesystem.files_under(path))
|
| -
|
| def add(self, destination_path, return_exit_code=False):
|
| self.add_list([destination_path], return_exit_code)
|
|
|
|
|