Skip to content

Commit

Permalink
fix: sonarcloud issue with beliefset
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimdekker committed Jun 26, 2024
1 parent bfe1041 commit ec662e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Aplib.Core/Belief/BeliefSets/BeliefSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ namespace Aplib.Core.Belief.BeliefSets
{
/// <summary>
/// This class can be inherited to define a set of beliefs for an agent.
/// All <i>public fields</i> defined in the inheriting class that implement <see cref="IBelief" />
/// All <i>public fields</i> defined in the inheriting class that implement <see cref="IBelief" />
/// are automatically updated when calling <see cref="UpdateBeliefs" />.
/// </summary>
public abstract class BeliefSet : IBeliefSet
public class BeliefSet : IBeliefSet
{
/// <summary>
/// An array storing all <i>public fields</i> of type <see cref="IBelief" /> that are defined in the inheriting
Expand Down

0 comments on commit ec662e5

Please sign in to comment.