From cf7dc39b826a78aab970444c3caf3abd9cef4e07 Mon Sep 17 00:00:00 2001 From: schu Date: Sun, 24 Jul 2011 15:58:10 +0200 Subject: [PATCH] repository.c: remove obsolete TODO marker Signed-off-by: schu --- src/repository.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,