From 196d8b87f9f4dd4f4be7cf51f4e3e8a3c6742186 Mon Sep 17 00:00:00 2001 From: mohsenno1 Date: Tue, 26 Sep 2017 09:03:31 +0300 Subject: [PATCH] Update CodeGeneratorUtils.cs To Solve the Issue #64 https://github.com/OData/lab/issues/64 --- ODataConnectedService/src/Common/CodeGeneratorUtils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ODataConnectedService/src/Common/CodeGeneratorUtils.cs b/ODataConnectedService/src/Common/CodeGeneratorUtils.cs index a9d3fcf..aa0aed2 100644 --- a/ODataConnectedService/src/Common/CodeGeneratorUtils.cs +++ b/ODataConnectedService/src/Common/CodeGeneratorUtils.cs @@ -13,7 +13,7 @@ internal static class CodeGeneratorUtils /// /// Try to get the location of the installed WCF Data Service. /// - /// Returns the location of the installed WCF Data Service if it exists, else returns null. + /// Returns the location of the installed WCF Data Service if it exists, else returns empty string. public static string GetWCFDSInstallLocation() { string dataFxRegistryPath = 8 == IntPtr.Size @@ -31,7 +31,7 @@ public static string GetWCFDSInstallLocation() } } - return null; + return String.Empty; } } }