Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove PathUtility.Combine method
  • Loading branch information
ogail committed Jan 3, 2013
1 parent b95ef68 commit 5da2faa
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions WindowsAzurePowershell/src/Management/Utilities/PathUtility.cs
Expand Up @@ -63,17 +63,5 @@ public static string FindServiceRootDirectory(string path)
// Couldn't locate the service root, exit
return null;
}

public static string Combine(params string[] paths)
{
string combinedPath = string.Empty;

foreach (string path in paths)
{
combinedPath = Path.Combine(combinedPath, path);
}

return combinedPath;
}
}
}

0 comments on commit 5da2faa

Please sign in to comment.