From 32efe43f85b93d5bc7bbbdfffbc97d6256040d81 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Tue, 24 Jan 2017 10:29:30 -0800 Subject: [PATCH] Delete some dead code --- .../DefaultDocumentClassifier.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/Microsoft.AspNetCore.Razor.Evolution/DefaultDocumentClassifier.cs b/src/Microsoft.AspNetCore.Razor.Evolution/DefaultDocumentClassifier.cs index 2924c42a64..c8655caf65 100644 --- a/src/Microsoft.AspNetCore.Razor.Evolution/DefaultDocumentClassifier.cs +++ b/src/Microsoft.AspNetCore.Razor.Evolution/DefaultDocumentClassifier.cs @@ -100,24 +100,5 @@ namespace Microsoft.AspNetCore.Razor.Evolution _method.Add(node); } } - - public void Foo() - { - //// For prettiness, let's insert the usings before the class declaration. - //var i = 0; - //for (; i < Namespace.Children.Count; i++) - //{ - // if (Namespace.Children[i] is ClassDeclarationIRNode) - // { - // break; - // } - //} - - //var @using = new UsingStatementIRNode() - //{ - // Content = namespaceImport, - // SourceRange = BuildSourceRangeFromNode(span), - //}; - } } }