Commit 89039682651474c6e2bf9abcc02cb71897f8b4e1

Vicent Marti 2010-05-22T14:36:36

Removed 'git_commit_uninteresting' from the public API. Signed-off-by: Vicent Marti <tanoku@gmail.com> Signed-off-by: Andreas Ericsson <ae@op5.se>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/src/git/commit.h b/src/git/commit.h
index 279d8e3..1a57ba7 100644
--- a/src/git/commit.h
+++ b/src/git/commit.h
@@ -44,14 +44,6 @@ GIT_EXTERN(git_commit *) git_commit_parse(git_revpool *pool, const git_oid *id);
  */
 GIT_EXTERN(const git_oid *) git_commit_id(git_commit *commit);
 
-
-/**
- * Mark a commit and all its parents as uninteresting.
- * @param commit The commit to mark
- */
-GIT_EXTERN(void) git_commit_mark_uninteresting(git_commit *commit);
-
-
 /** @} */
 GIT_END_DECL
 #endif