Skip to content

Commit 731edd6

Browse files
committed
Add missing [NotNull] annotation to NbtLongArray.Value
1 parent 3d2654a commit 731edd6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fNbt/Tags/NbtLongArray.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public override NbtTagType TagType {
1414

1515
/// <summary> Value/payload of this tag (an array of signed 64-bit integers). Value is stored as-is and is NOT cloned. May not be <c>null</c>. </summary>
1616
/// <exception cref="ArgumentNullException"> <paramref name="value"/> is <c>null</c>. </exception>
17+
[NotNull]
1718
public long[] Value {
1819
get { return longs; }
1920
set {

0 commit comments

Comments
 (0)