Revert "Git.pm: Introduce fast get_object() method"

This reverts commit 3c479c37f8.
This commit is contained in:
Junio C Hamano
2006-09-02 22:58:32 -07:00
parent 3c2f5886c7
commit 9594b326dc
2 changed files with 0 additions and 42 deletions

View File

@ -572,24 +572,6 @@ sub ident_person {
}
=item get_object ( TYPE, SHA1 )
Return contents of the given object in a scalar string. If the object has
not been found, undef is returned; however, do not rely on this! Currently,
if you use multiple repositories at once, get_object() on one repository
_might_ return the object even though it exists only in another repository.
(But do not rely on this behaviour either.)
The method must be called on a repository instance.
Implementation of this method is very fast; no external command calls
are involved. That's why it is broken, too. ;-)
=cut
# Implemented in Git.xs.
=item hash_object ( TYPE, FILENAME )
=item hash_object ( TYPE, FILEHANDLE )