Skip to content

Commit 2102248

Browse files
committed
change adjust destination from public to open
1 parent 4878796 commit 2102248

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/SegmentAdjust/AdjustDestination.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ import Segment
3232
import Adjust
3333

3434
@objc(SEGAdjustDestination)
35-
public class ObjCSegmentAdjust: NSObject, ObjCPlugin, ObjCPluginShim {
35+
open class ObjCSegmentAdjust: NSObject, ObjCPlugin, ObjCPluginShim {
3636
public func instance() -> EventPlugin { return AdjustDestination() }
3737
}
3838

39-
public class AdjustDestination: NSObject, DestinationPlugin {
39+
open class AdjustDestination: NSObject, DestinationPlugin {
4040
public let timeline = Timeline()
4141
public let type = PluginType.destination
4242
public let key = "Adjust"
@@ -46,7 +46,7 @@ public class AdjustDestination: NSObject, DestinationPlugin {
4646

4747
public override init() { }
4848

49-
public func update(settings: Settings, type: UpdateType) {
49+
open func update(settings: Settings, type: UpdateType) {
5050
// Skip if you have a singleton and don't want to keep updating via settings.
5151
guard type == .initial else { return }
5252

0 commit comments

Comments
 (0)