diff --git a/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs b/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs index b83d38bb7a..28cf6cbcff 100644 --- a/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs +++ b/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs @@ -1924,7 +1924,6 @@ namespace ICSharpCode.NRefactory.CSharp.Completion if (curNode is AttributedNode || baseUnit.GetNodeAt (location) == null) { baseUnit = ParseStub ("a()};"); } - Print (baseUnit); var memberLocation = currentMember != null ? currentMember.Region.Begin : currentType.Region.Begin; var mref = baseUnit.GetNodeAt (location); if (mref == null) { @@ -2056,7 +2055,6 @@ namespace ICSharpCode.NRefactory.CSharp.Completion // try expression in anonymous type "new { sample = x$" case if (expr == null) { baseUnit = ParseStub ("a", false); - Print (baseUnit); expr = baseUnit.GetNodeAt (location.Line, location.Column); if (expr != null) expr = baseUnit.GetNodeAt (location.Line, location.Column) ?? expr;