Skip to content

Commit a92b546

Browse files
committed
refactor: The "Buckets" attribute must
1 parent b727556 commit a92b546

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BloomFilter/FilterMemorySerializerParam.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public class FilterMemorySerializerParam
4747
/// bitmap
4848
/// </summary>
4949
#if NET5_0_OR_GREATER
50-
public BitArray[]? Buckets { get; init; }
50+
public BitArray[] Buckets { get; init; } = default!;
5151
#else
52-
public BitArray[]? Buckets { get; set; }
52+
public BitArray[] Buckets { get; set; } = default!;
5353
#endif
5454
}

0 commit comments

Comments
 (0)