Skip to content

Commit

Permalink
Fixed issue that is caused by an internal predicate builder. (#7640)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored Oct 22, 2024
1 parent 10b20f5 commit 6c9d385
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@

namespace GreenDonut.Predicates;

/// <summary>
/// A default implementation of the <see cref="IPredicateBuilder"/>.
/// </summary>
[Experimental(Experiments.Predicates)]
internal sealed class DefaultPredicateBuilder : IPredicateBuilder
public sealed class DefaultPredicateBuilder : IPredicateBuilder
{
private List<LambdaExpression>? _predicates;

Expand Down

0 comments on commit 6c9d385

Please sign in to comment.