Git::SVN::Utils: remove irrelevant comment
[gitweb.git] / perl / Git / SVN / Utils.pm
index 4005da9d7d08c4119c6a0b39c7bb6eb716581518..17ba698a6d01f16f8028fc43e1c67bff96294994 100644 (file)
@@ -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);