diff options
author | Eric Wong <normalperson@yhbt.net> | 2014-10-25 07:56:11 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2014-10-25 07:56:28 +0000 |
commit | 6725ecaba7af16c69591e5a180acbc521e2bba63 (patch) | |
tree | e26afd49e495091adfe52eee5e484ce127e2c664 /perl | |
parent | dfa72fdb96befbd790f623bb2909a347176753c2 (diff) | |
download | git-6725ecaba7af16c69591e5a180acbc521e2bba63.tar.gz |
git-svn: remove unnecessary DESTROY override
This override was probably never necessary, but most likely a no-op
as it does not appear to do anything in SVN::Ra itself.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Git/SVN/Ra.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/perl/Git/SVN/Ra.pm b/perl/Git/SVN/Ra.pm index 1828519b4a..e326849c30 100644 --- a/perl/Git/SVN/Ra.pm +++ b/perl/Git/SVN/Ra.pm @@ -177,10 +177,6 @@ sub get_dir { wantarray ? (\%dirents, $r, $props) : \%dirents; } -sub DESTROY { - # do not call the real DESTROY since we store ourselves in $RA -} - # get_log(paths, start, end, limit, # discover_changed_paths, strict_node_history, receiver) sub get_log { |