Skip to content

Commit

Permalink
removes expression which are always true
Browse files Browse the repository at this point in the history
  • Loading branch information
manne committed Aug 7, 2016
1 parent f88f05e commit fa609b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TestingHelpers/MockPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ public override string GetFullPath(string path)
{
fullPath = DirectorySeparatorChar + fullPath;
}
else if (isUnixRooted && isUnc)
else if (isUnixRooted)
{
fullPath = @"//" + fullPath;
}
else if (!isUnixRooted && isUnc)
else if (isUnc)
{
fullPath = @"\\" + fullPath;
}
Expand Down

0 comments on commit fa609b8

Please sign in to comment.