improve setter access modifiers

This commit is contained in:
Jonathon Broughton
2026-03-05 22:09:34 +00:00
parent 9a96d9b88c
commit 0aefa89935
@@ -18,6 +18,6 @@ public class DisplayValueExtractor(
/// <summary>
/// Gets the underlying geometry converter for accessing cache statistics.
/// </summary>
internal GeometryToSpeckleConverter GeometryConverter { get; } =
private GeometryToSpeckleConverter GeometryConverter { get; } =
geometryConverter ?? throw new ArgumentNullException(nameof(geometryConverter));
}