Removing "I like pie" diagnostics

This commit is contained in:
Louis DeJardin 2015-07-09 11:49:14 -07:00 committed by Stephen Halter
parent 963f086eb0
commit ad089be477
1 changed files with 2 additions and 4 deletions

View File

@ -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",