Browse Source

Removed debug message.

newNRvisualizers
Mike Krüger 14 years ago
parent
commit
af87519e9d
  1. 1
      ICSharpCode.NRefactory.CSharp/Refactoring/CodeActions/CreateDelegateAction.cs

1
ICSharpCode.NRefactory.CSharp/Refactoring/CodeActions/CreateDelegateAction.cs

@ -36,7 +36,6 @@ namespace ICSharpCode.NRefactory.CSharp.Refactoring
public IEnumerable<CodeAction> GetActions(RefactoringContext context) public IEnumerable<CodeAction> GetActions(RefactoringContext context)
{ {
var simpleType = context.GetNode<SimpleType>(); var simpleType = context.GetNode<SimpleType>();
System.Console.WriteLine("node:" + context.GetNode().Parent);
if (simpleType != null && (simpleType.Parent is EventDeclaration || simpleType.Parent is CustomEventDeclaration)) if (simpleType != null && (simpleType.Parent is EventDeclaration || simpleType.Parent is CustomEventDeclaration))
return GetActions(context, simpleType); return GetActions(context, simpleType);

Loading…
Cancel
Save