Replaced tabs with spaces

This commit is contained in:
ivan-danilov
2012-02-16 14:46:46 +02:00
parent d76f1c99e3
commit 71aa30d845
+6 -6
View File
@@ -442,16 +442,16 @@ namespace Sep.Git.Tfs.VsCommon
public int PendRename(string pathFrom, string pathTo)
{
//looks like TFS Api cannot overwrite existing target file
EnsureTargetFileDoesNotExist(pathTo);
//looks like TFS Api cannot overwrite existing target file
EnsureTargetFileDoesNotExist(pathTo);
return _workspace.PendRename(pathFrom, pathTo);
}
private void EnsureTargetFileDoesNotExist(string pathTo)
{
File.Delete(pathTo);
}
private void EnsureTargetFileDoesNotExist(string pathTo)
{
File.Delete(pathTo);
}
public void ForceGetFile(string path, int changeset)
{