diff options
author | Vicent Martà <tanoku@gmail.com> | 2011-07-25 12:10:10 -0700 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2011-07-25 12:10:10 -0700 |
commit | 269beb47107c761de4a128edc9660cc64f2b7ffc (patch) | |
tree | 443385adab4b0d8ec28a588642bdbf1fb6110baf | |
parent | 738715eb4c12357b150e04ca1fd174f90bf22b9d (diff) | |
parent | cf7dc39b826a78aab970444c3caf3abd9cef4e07 (diff) | |
download | libgit2-269beb47107c761de4a128edc9660cc64f2b7ffc.tar.gz |
Merge pull request #336 from schu/cleanup
repository.c: remove obsolete TODO marker
-rw-r--r-- | src/repository.c | 2 |
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, |