git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv2 3/3] string_list: Remove string_list_insert_at_index from its API
       [not found] <CAPc5daXuecn9bvuQ4qa6p5Ln-RqoUxkh=9nfOZCWAdwHZYJD5g@mail.gmail.com>
@ 2014-11-25  1:31 ` Stefan Beller
  0 siblings, 0 replies; only message in thread
From: Stefan Beller @ 2014-11-25  1:31 UTC (permalink / raw)
  To: gitster, git; +Cc: Stefan Beller

Nobody is using this function any more, let's get rid of it.

Signed-off-by: Stefan Beller <sbeller@google.com>
---
 string-list.c | 8 +-------
 string-list.h | 2 --
 2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/string-list.c b/string-list.c
index c5aa076..9584fa6 100644
--- a/string-list.c
+++ b/string-list.c
@@ -59,13 +59,7 @@ static int add_entry(int insert_at, struct string_list *list, const char *string
 
 struct string_list_item *string_list_insert(struct string_list *list, const char *string)
 {
-	return string_list_insert_at_index(list, -1, string);
-}
-
-struct string_list_item *string_list_insert_at_index(struct string_list *list,
-						     int insert_at, const char *string)
-{
-	int index = add_entry(insert_at, list, string);
+	int index = add_entry(-1, list, string);
 
 	if (index < 0)
 		index = -1 - index;
diff --git a/string-list.h b/string-list.h
index 40ffe0c..ee9b100 100644
--- a/string-list.h
+++ b/string-list.h
@@ -61,8 +61,6 @@ int string_list_find_insert_index(const struct string_list *list, const char *st
  * Returns the string_list_item, the string is part of.
  */
 struct string_list_item *string_list_insert(struct string_list *list, const char *string);
-struct string_list_item *string_list_insert_at_index(struct string_list *list,
-						     int insert_at, const char *string);
 
 /*
  * Checks if the given string is part of a sorted list. If it is part of the list,
-- 
2.2.0.rc3

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-11-25  1:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CAPc5daXuecn9bvuQ4qa6p5Ln-RqoUxkh=9nfOZCWAdwHZYJD5g@mail.gmail.com>
2014-11-25  1:31 ` [PATCHv2 3/3] string_list: Remove string_list_insert_at_index from its API Stefan Beller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).