| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py
|
| index 73a6785c036bddddc11de8c9e010aae5aad1dd23..18452fbc016ed84e00e777dba82a5160eae3fe0b 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py
|
| @@ -235,7 +235,6 @@ class Git(object):
|
| # FIXME: --diff-filter could be used to avoid the "extract_filenames" step.
|
| status_command = ['diff', '-r', '--name-status',
|
| '--no-renames', '--no-ext-diff', '--full-index', self._merge_base(git_commit)]
|
| - # FIXME: I'm not sure we're returning the same set of files that SVN.changed_files is.
|
| # Added (A), Copied (C), Deleted (D), Modified (M), Renamed (R)
|
| return self._run_status_and_extract_filenames(status_command, self._status_regexp(diff_filter))
|
|
|
|
|