Skip to content

Commit

Permalink
fix onConfigure access-modifier
Browse files Browse the repository at this point in the history
Change `OnConfigure` access modifier to match the overridden method.


In this PR ChilliCream#5750,
you changed `OnConfigure` from `public` to `protected` and forgot to update it in the docs.
  • Loading branch information
HamzaFouad committed Apr 4, 2023
1 parent 13349fa commit 4a3d990
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ It is super simple to create custom descriptor attributes and package complex fu
public class SomeMiddlewareAttribute
: ObjectFieldDescriptorAttribute
{
public override void OnConfigure(
protected override void OnConfigure(
IDescriptorContext context,
IObjectFieldDescriptor descriptor,
MemberInfo member)
Expand Down

0 comments on commit 4a3d990

Please sign in to comment.