Skip to content

Commit

Permalink
Update NodeObjectTypeExtensions.cs
Browse files Browse the repository at this point in the history
Fix obsolete comment.
  • Loading branch information
vbornand committed Oct 15, 2020
1 parent 27c68fa commit e1560c7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,12 +27,12 @@ public static class NodeObjectTypeExtensions
return new NodeDescriptor<T>(descriptor);
}

[Obsolete("Use ImplementNode.")]
[Obsolete("Use ImplementsNode.")]
public static INodeDescriptor AsNode(
this IObjectTypeDescriptor descriptor) =>
ImplementsNode(descriptor);

[Obsolete("Use ImplementNode.")]
[Obsolete("Use ImplementsNode.")]
public static INodeDescriptor<T> AsNode<T>(
this IObjectTypeDescriptor<T> descriptor) =>
ImplementsNode<T>(descriptor);
Expand Down

0 comments on commit e1560c7

Please sign in to comment.