Skip to content

Commit

Permalink
Update CodeGeneratorUtils.cs
Browse files Browse the repository at this point in the history
To Solve the Issue #64
#64
  • Loading branch information
mohsenno1 authored and xuzhg committed Oct 19, 2017
1 parent b038afa commit 196d8b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ODataConnectedService/src/Common/CodeGeneratorUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal static class CodeGeneratorUtils
/// <summary>
/// Try to get the location of the installed WCF Data Service.
/// </summary>
/// <returns>Returns the location of the installed WCF Data Service if it exists, else returns null.</returns>
/// <returns>Returns the location of the installed WCF Data Service if it exists, else returns empty string.</returns>
public static string GetWCFDSInstallLocation()
{
string dataFxRegistryPath = 8 == IntPtr.Size
Expand All @@ -31,7 +31,7 @@ public static string GetWCFDSInstallLocation()
}
}

return null;
return String.Empty;
}
}
}

0 comments on commit 196d8b8

Please sign in to comment.