We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e49835 commit 83ab331Copy full SHA for 83ab331
Sources/Optimizely/VuidManager.swift
@@ -16,15 +16,15 @@
16
17
import Foundation
18
19
-class VuidManager {
+public class VuidManager {
20
private var _vuid: String = ""
21
private(set) var enable: Bool = false
22
let logger = OPTLoggerFactory.getLogger()
23
24
// a single vuid should be shared for all SDK instances
25
- static let shared = VuidManager()
+ public static let shared = VuidManager()
26
27
- func configure(enable: Bool) {
+ public func configure(enable: Bool) {
28
self.enable = enable
29
if enable {
30
self._vuid = load()
@@ -52,7 +52,7 @@ class VuidManager {
52
// MARK: - VUID Store
53
54
extension VuidManager {
55
- var vuid: String? {
+ public var vuid: String? {
56
if self.enable {
57
return _vuid
58
} else {
0 commit comments