Skip to content

Commit

Permalink
Merge pull request #36 from specklesystems/oguzhan/fix-point-value-ge…
Browse files Browse the repository at this point in the history
…tter

Remove the Point value prop getter
  • Loading branch information
oguzhankoral authored Jul 17, 2024
2 parents 72b7123 + 4536ece commit e975975
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Speckle.Objects/Geometry/Point.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@ public Point(Vector vector)
/// <summary>
/// Gets or sets the coordinates of the <see cref="Point"/>
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore), Obsolete("Use x,y,z properties instead", true)]
[Obsolete("Use x,y,z properties instead", true)]
public List<double> value
{
get => new();
set
{
x = value[0];
Expand Down

0 comments on commit e975975

Please sign in to comment.