aboutsummaryrefslogtreecommitdiff
path: root/perl/Git.pm
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-09-02 22:58:32 -0700
committerJunio C Hamano <junkio@cox.net>2006-09-02 22:58:32 -0700
commit9594b326dcd6b879807fe6614f55ba50fa3d4551 (patch)
tree8de4db3d40de0aea19a6612551b2e6ef1f205a41 /perl/Git.pm
parent3c2f5886c78454276a045c1312eca652c11d98d6 (diff)
downloadgit-9594b326dcd6b879807fe6614f55ba50fa3d4551.tar.gz
git-9594b326dcd6b879807fe6614f55ba50fa3d4551.tar.xz
Revert "Git.pm: Introduce fast get_object() method"
This reverts commit 3c479c37f8651d09e1d08b8d6ea9757164ee1235.
Diffstat (limited to 'perl/Git.pm')
-rw-r--r--perl/Git.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/perl/Git.pm b/perl/Git.pm
index f2467bddb..9da15e9c8 100644
--- a/perl/Git.pm
+++ b/perl/Git.pm
@@ -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 )