]> git.proxmox.com Git - libgit2.git/commitdiff
refs: Dude, you're OUT.
authorVicent Marti <tanoku@gmail.com>
Thu, 7 Mar 2013 17:58:34 +0000 (18:58 +0100)
committerVicent Marti <tanoku@gmail.com>
Thu, 7 Mar 2013 17:58:34 +0000 (18:58 +0100)
include/git2/refs.h

index 2373bee775ec1e8837a246f2f93b2d8e653bdbda..e0451ba8214ae3397d184659670bca8c20e54a21 100644 (file)
@@ -319,24 +319,6 @@ GIT_EXTERN(int) git_reference_foreach(
        git_reference_foreach_cb callback,
        void *payload);
 
-/**
- * Reload a reference from disk.
- *
- * Reference pointers can become outdated if the Git repository is
- * accessed simultaneously by other clients while the library is open.
- *
- * This method forces a reload of the reference from disk, to ensure that
- * the provided information is still reliable.
- *
- * If the reload fails (e.g. the reference no longer exists on disk, or
- * has become corrupted), an error code will be returned and the reference
- * pointer will be invalidated and freed.
- *
- * @param ref The reference to reload
- * @return 0 on success, or an error code
- */
-GIT_EXTERN(int) git_reference_reload(git_reference *ref);
-
 /**
  * Free the given reference.
  *