Skip to content

Commit

Permalink
Think through Array
Browse files Browse the repository at this point in the history
  • Loading branch information
tnunnink committed Jul 28, 2023
1 parent 740af2c commit 4ade168
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/LogixData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,11 @@ private static LogixType DeserializeAtomic(XElement element)
/// <summary>
/// Handles deserializing an array element to a <see cref="ArrayType"/>.
/// </summary>
private static LogixType DeserializeArray(XElement element) => new ArrayType<LogixType>(element);
private static LogixType DeserializeArray(XElement element)
{

return new ArrayType<LogixType>(element);
}

/// <summary>
/// Handles deserializing an array index element to a logix type, either atomic, string, or structure,
Expand Down

0 comments on commit 4ade168

Please sign in to comment.