1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-06 04:26:12 +02:00

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 <jrnieder@gmail.com>
Signed-off-by: Eric Wong <normalperson@yhbt.net>
This commit is contained in:
Jonathan Nieder 2012-09-17 02:13:31 -07:00 committed by Eric Wong
parent f3045919d1
commit 52de6fa2c7

View File

@ -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 {