From: Jonathan Nieder Date: Mon, 17 Sep 2012 09:13:31 +0000 (-0700) Subject: Git::SVN: rename private path field X-Git-Tag: v1.8.0-rc1~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=52de6fa2c7ac26a67027e715d45771cb908eb77c;p=git.git Git::SVN: rename private path field All users of $gs->{path} should have been converted to use the accessor by now. Check our work by renaming the underlying variable to break callers that try to use it directly. Signed-off-by: Jonathan Nieder Signed-off-by: Eric Wong --- diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm index 88b91640c..59215fa86 100644 --- a/perl/Git/SVN.pm +++ b/perl/Git/SVN.pm @@ -2331,11 +2331,11 @@ sub path { if (@_) { my $path = shift; - $self->{path} = canonicalize_path($path); + $self->{_path} = canonicalize_path($path); return; } - return $self->{path}; + return $self->{_path}; } sub url {