From 06981838a66a5692184921220866db4e36799506 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 29 Jan 2026 03:07:25 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20DeliveryZoneService?= =?UTF-8?q?=20=E5=8F=AF=E7=A9=BA=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../App/Services/DeliveryZoneService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Services/DeliveryZoneService.cs b/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Services/DeliveryZoneService.cs index 6a2c982..4bb6c84 100644 --- a/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Services/DeliveryZoneService.cs +++ b/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Services/DeliveryZoneService.cs @@ -167,7 +167,7 @@ public sealed class DeliveryZoneService : IDeliveryZoneService private static bool TryReadPolygonFromCoordinates(JsonElement coordinatesElement, out Polygon polygon) { - polygon = default; + polygon = default!; if (!TryReadRings(coordinatesElement, out var rings) || rings.Count == 0) { return false;