From: Michael G. Schwern Date: Sat, 28 Jul 2012 09:38:30 +0000 (-0700) Subject: Git::SVN::Utils: remove irrelevant comment X-Git-Tag: v1.8.0-rc0~155^2~10 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/8169a3908c72ce08763516745d726d8a2ac51a36?ds=sidebyside Git::SVN::Utils: remove irrelevant comment The code doesn't use File::Spec. [ew: commit title] Signed-off-by: Eric Wong --- diff --git a/perl/Git/SVN/Utils.pm b/perl/Git/SVN/Utils.pm index 4005da9d7d..17ba698a6d 100644 --- a/perl/Git/SVN/Utils.pm +++ b/perl/Git/SVN/Utils.pm @@ -92,8 +92,6 @@ sub canonicalize_path { $path = "./" . $path; $dot_slash_added = 1; } - # File::Spec->canonpath doesn't collapse x/../y into y (for a - # good reason), so let's do this manually. $path =~ s#/+#/#g; $path =~ s#/\.(?:/|$)#/#g; $path = _collapse_dotdot($path);