summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2011-07-25 12:10:10 -0700
committerVicent Martí <tanoku@gmail.com>2011-07-25 12:10:10 -0700
commit269beb47107c761de4a128edc9660cc64f2b7ffc (patch)
tree443385adab4b0d8ec28a588642bdbf1fb6110baf /src
parent738715eb4c12357b150e04ca1fd174f90bf22b9d (diff)
parentcf7dc39b826a78aab970444c3caf3abd9cef4e07 (diff)
downloadlibgit2-269beb47107c761de4a128edc9660cc64f2b7ffc.tar.gz
Merge pull request #336 from schu/cleanup
repository.c: remove obsolete TODO marker
Diffstat (limited to 'src')
-rw-r--r--src/repository.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c
index c9c28a944..cb62d9eb6 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -200,7 +200,7 @@ static git_repository *repository_alloc()
static int init_odb(git_repository *repo)
{
- return git_odb_open(&repo->db, repo->path_odb); /* TODO: Move odb.c to new error handling */
+ return git_odb_open(&repo->db, repo->path_odb);
}
int git_repository_open3(git_repository **repo_out,