author | Junio C Hamano <gitster@pobox.com> | |
Sat, 7 Jun 2008 18:39:20 +0000 (11:39 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 8 Jun 2008 20:46:37 +0000 (13:46 -0700) | ||
commit | d633c882db7cc79bf2d33df99cb0d1c2ef28c15d | |
tree | 493a8269fb8f53e95e37dbea1ede5fe8eacc4a16 | tree | snapshot |
parent | e048a49f96172aecec96a5821a2177cbd49a24ed | commit | diff |
http-push.c: remove duplicated code
An earlier commit aa1dbc9 (Update http-push functionality, 2006-03-07)
borrowed some code from rev-list.c.
This copy and paste made sense back then, because mark_edges_uninteresting(),
and its helper mark_edge_parents_uninteresting(), accessed a file scope
static variable "revs" in rev-list.c, and http-push.c did not have nor care
about such a variable.
But these days they are already properly libified and live in list-objects.c
and they take "revs" as as an argument. Make use of them and lose 20 or
so lines.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
An earlier commit aa1dbc9 (Update http-push functionality, 2006-03-07)
borrowed some code from rev-list.c.
This copy and paste made sense back then, because mark_edges_uninteresting(),
and its helper mark_edge_parents_uninteresting(), accessed a file scope
static variable "revs" in rev-list.c, and http-push.c did not have nor care
about such a variable.
But these days they are already properly libified and live in list-objects.c
and they take "revs" as as an argument. Make use of them and lose 20 or
so lines.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http-push.c | diff | blob | history |