diff --git a/ICSharpCode.NRefactory.CSharp/Refactoring/CodeActions/CreateDelegateAction.cs b/ICSharpCode.NRefactory.CSharp/Refactoring/CodeActions/CreateDelegateAction.cs index cc91e09ba3..0240e09a6e 100644 --- a/ICSharpCode.NRefactory.CSharp/Refactoring/CodeActions/CreateDelegateAction.cs +++ b/ICSharpCode.NRefactory.CSharp/Refactoring/CodeActions/CreateDelegateAction.cs @@ -36,7 +36,6 @@ namespace ICSharpCode.NRefactory.CSharp.Refactoring public IEnumerable GetActions(RefactoringContext context) { var simpleType = context.GetNode(); - System.Console.WriteLine("node:" + context.GetNode().Parent); if (simpleType != null && (simpleType.Parent is EventDeclaration || simpleType.Parent is CustomEventDeclaration)) return GetActions(context, simpleType);