From f5087ba2c6c28c427e5e285ad86cd1c427394a0c Mon Sep 17 00:00:00 2001 From: Pat Nakajima Date: Thu, 4 Apr 2024 13:14:01 -0700 Subject: [PATCH] remove unnecessary event from struct --- .../LiveActivity/APNSLiveActivityNotificationEvent.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Sources/APNSCore/LiveActivity/APNSLiveActivityNotificationEvent.swift b/Sources/APNSCore/LiveActivity/APNSLiveActivityNotificationEvent.swift index 55877d2..9f925f8 100644 --- a/Sources/APNSCore/LiveActivity/APNSLiveActivityNotificationEvent.swift +++ b/Sources/APNSCore/LiveActivity/APNSLiveActivityNotificationEvent.swift @@ -22,7 +22,4 @@ public struct APNSLiveActivityNotificationEvent: Hashable { /// Specifies that live activity should be ended public static let end = Self(rawValue: "end") - - /// The underlying raw value that is send to APNs. - public static let start = Self(rawValue: "start") }