diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2016-11-14 14:39:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-11-14 09:24:04 -0800 |
commit | 974e0044d65dc22e8137e93b8ea13aec23d3a5a3 (patch) | |
tree | e04b3b7617370eb699107fae3dacb9d3416b71ec /diffcore-rename.c | |
parent | 0b65a8dbdb38962e700ee16776a3042beb489060 (diff) | |
download | git-974e0044d65dc22e8137e93b8ea13aec23d3a5a3.tar.gz |
diffcore-delta: remove unused parameter to diffcore_count_changes()tk/diffcore-delta-remove-unused
The delta_limit parameter to diffcore_count_changes() has been unused
since commit ba23bbc8e ("diffcore-delta: make change counter to byte
oriented again.", 2006-03-04).
Remove the parameter and adjust all callers.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diffcore-rename.c')
-rw-r--r-- | diffcore-rename.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/diffcore-rename.c b/diffcore-rename.c index 7f03eb5a04..8ce3b7d661 100644 --- a/diffcore-rename.c +++ b/diffcore-rename.c @@ -144,7 +144,6 @@ static int estimate_similarity(struct diff_filespec *src, * call into this function in that case. */ unsigned long max_size, delta_size, base_size, src_copied, literal_added; - unsigned long delta_limit; int score; /* We deal only with regular files. Symlink renames are handled @@ -190,11 +189,8 @@ static int estimate_similarity(struct diff_filespec *src, if (!dst->cnt_data && diff_populate_filespec(dst, 0)) return 0; - delta_limit = (unsigned long) - (base_size * (MAX_SCORE-minimum_score) / MAX_SCORE); if (diffcore_count_changes(src, dst, &src->cnt_data, &dst->cnt_data, - delta_limit, &src_copied, &literal_added)) return 0; |