From ad089be477a97c9730626e8aef4f03b8514d51a6 Mon Sep 17 00:00:00 2001 From: Louis DeJardin Date: Thu, 9 Jul 2015 11:49:14 -0700 Subject: [PATCH] Removing "I like pie" diagnostics --- .../KnownHeaders.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNet.Server.Kestrel.GeneratedCode/KnownHeaders.cs b/src/Microsoft.AspNet.Server.Kestrel.GeneratedCode/KnownHeaders.cs index 61cb71178d..1af18854a5 100644 --- a/src/Microsoft.AspNet.Server.Kestrel.GeneratedCode/KnownHeaders.cs +++ b/src/Microsoft.AspNet.Server.Kestrel.GeneratedCode/KnownHeaders.cs @@ -20,15 +20,13 @@ namespace Microsoft.AspNet.Server.Kestrel.GeneratedCode public string Name { get; set; } public int Index { get; set; } public string Identifier => Name.Replace("-", ""); - public string TestBit() => $"((_bits & ({1L << Index}L)) != 0)"; + public string TestBit() => $"((_bits & {1L << Index}L) != 0)"; public string SetBit() => $"_bits |= {1L << Index}L"; - public string ClearBit() => $"_bits &= ~{(1L << Index)}L"; + public string ClearBit() => $"_bits &= ~{1L << Index}L"; } public virtual void BeforeCompile(BeforeCompileContext context) { - Console.WriteLine("I like pie"); - var commonHeaders = new[] { "Cache-Control",