Skip to content

Commit

Permalink
fix. IsValid initial value
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed May 19, 2024
1 parent aca092b commit 179fe77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/src/partials/Primitive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Primitive(byte[] data)
Get = new PrimitiveGet(this);
Add = new PrimitiveAdd(this);

IsValid = false;
IsValid = true;

_bytes = new List<byte>();

Expand Down

0 comments on commit 179fe77

Please sign in to comment.