From 210224828c189f86a00edfe1458fe3ffa815c6cc Mon Sep 17 00:00:00 2001 From: Alan Charles Date: Wed, 14 Feb 2024 11:02:38 -0700 Subject: [PATCH] change adjust destination from public to open --- Sources/SegmentAdjust/AdjustDestination.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/SegmentAdjust/AdjustDestination.swift b/Sources/SegmentAdjust/AdjustDestination.swift index bb7ac87..04483db 100644 --- a/Sources/SegmentAdjust/AdjustDestination.swift +++ b/Sources/SegmentAdjust/AdjustDestination.swift @@ -32,11 +32,11 @@ import Segment import Adjust @objc(SEGAdjustDestination) -public class ObjCSegmentAdjust: NSObject, ObjCPlugin, ObjCPluginShim { +open class ObjCSegmentAdjust: NSObject, ObjCPlugin, ObjCPluginShim { public func instance() -> EventPlugin { return AdjustDestination() } } -public class AdjustDestination: NSObject, DestinationPlugin { +open class AdjustDestination: NSObject, DestinationPlugin { public let timeline = Timeline() public let type = PluginType.destination public let key = "Adjust" @@ -46,7 +46,7 @@ public class AdjustDestination: NSObject, DestinationPlugin { public override init() { } - public func update(settings: Settings, type: UpdateType) { + open func update(settings: Settings, type: UpdateType) { // Skip if you have a singleton and don't want to keep updating via settings. guard type == .initial else { return }