Skip to content

Commit

Permalink
docs(PrimitiveTactic): disable warning 'Parameter has no matching par…
Browse files Browse the repository at this point in the history
…am tag in the XML comment (but other parameters do)' for the `PrimitiveTactic(Metadata, IQueryable<TBeliefSet>, Func<TBeliefSet, bool>)` constructor
  • Loading branch information
LukaBerkers committed May 20, 2024
1 parent 1cf174f commit 2b01146
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Aplib.Core/Intent/Tactics/PrimitiveTactic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public PrimitiveTactic(Metadata metadata, IAction<TBeliefSet> action) : this(met
/// <inheritdoc cref="PrimitiveTactic{TBeliefSet}(Metadata,IAction{TBeliefSet},System.Func{TBeliefSet,bool})"/>
public PrimitiveTactic(IAction<TBeliefSet> action) : this(new Metadata(), action) { }

#pragma warning disable 1573
/// <param name="queryAction">The queryable action of the primitive tactic.</param>
/// <inheritdoc cref="PrimitiveTactic{TBeliefSet}(Metadata,IAction{TBeliefSet},System.Func{TBeliefSet,bool})"/>
public PrimitiveTactic
Expand All @@ -51,6 +52,7 @@ public PrimitiveTactic
)
{
}
#pragma warning restore 1573

/// <inheritdoc
/// cref="PrimitiveTactic{TBeliefSet}(Metadata,IQueryable{TBeliefSet},System.Func{TBeliefSet,bool})"/>
Expand Down

0 comments on commit 2b01146

Please sign in to comment.