From 4536ecee879853fba0eb22cbaeb3eb5aa40bbdc7 Mon Sep 17 00:00:00 2001 From: oguzhankoral Date: Wed, 17 Jul 2024 09:32:05 +0200 Subject: [PATCH] Remove the Point value prop getter --- src/Speckle.Objects/Geometry/Point.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Speckle.Objects/Geometry/Point.cs b/src/Speckle.Objects/Geometry/Point.cs index 244ece46..776ace05 100644 --- a/src/Speckle.Objects/Geometry/Point.cs +++ b/src/Speckle.Objects/Geometry/Point.cs @@ -46,10 +46,9 @@ public class Point : Base, ITransformable /// /// Gets or sets the coordinates of the /// - [JsonProperty(NullValueHandling = NullValueHandling.Ignore), Obsolete("Use x,y,z properties instead", true)] + [Obsolete("Use x,y,z properties instead", true)] public List value { - get => new(); set { x = value[0];