From 6c595575c922eefa6023c870d22e48f6cad906c7 Mon Sep 17 00:00:00 2001 From: Lewis Cheng Date: Tue, 12 May 2015 19:50:30 -0700 Subject: [PATCH] Clean up macros in PRODUCTION code #3 --- src/Microsoft.OData.Client/DataServiceContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.OData.Client/DataServiceContext.cs b/src/Microsoft.OData.Client/DataServiceContext.cs index cc77c41423..d0d753ee56 100644 --- a/src/Microsoft.OData.Client/DataServiceContext.cs +++ b/src/Microsoft.OData.Client/DataServiceContext.cs @@ -3466,7 +3466,7 @@ private static class ClientEdmModelCache static ClientEdmModelCache() { IEnumerable protocolVersions = -#if PORTABLELIB +#if PORTABLELIB // Portable lib does not support Enum.GetValues() typeof(ODataProtocolVersion).GetFields().Where(f => f.IsLiteral).Select(f => f.GetValue(typeof(ODataProtocolVersion))).Cast(); #else Enum.GetValues(typeof(ODataProtocolVersion)).Cast();