File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ import { OptimizelySegmentOption } from './optimizely_segment_option';
27
27
import { invalidOdpDataFound } from './odp_utils' ;
28
28
import { OdpEvent } from './odp_event' ;
29
29
import { resolvablePromise , ResolvablePromise } from '../../utils/promise/resolvablePromise' ;
30
- import { VuidManagerOptions } from '../../shared_types' ;
31
30
32
31
/**
33
32
* Manager for handling internal all business logic related to
@@ -94,29 +93,21 @@ export abstract class OdpManager implements IOdpManager {
94
93
*/
95
94
odpIntegrationConfig ?: OdpIntegrationConfig ;
96
95
97
- /**
98
- * Options for handling VUID Manager
99
- */
100
- protected vuidManagerOptions ?: VuidManagerOptions ;
101
-
102
96
// TODO: Consider accepting logger as a parameter and initializing it in constructor instead
103
97
constructor ( {
104
98
odpIntegrationConfig,
105
99
segmentManager,
106
100
eventManager,
107
101
logger,
108
- vuidManagerOptions,
109
102
} : {
110
103
odpIntegrationConfig ?: OdpIntegrationConfig ;
111
104
segmentManager : IOdpSegmentManager ;
112
105
eventManager : IOdpEventManager ;
113
106
logger : LogHandler ;
114
- vuidManagerOptions ?: VuidManagerOptions ;
115
107
} ) {
116
108
this . segmentManager = segmentManager ;
117
109
this . eventManager = eventManager ;
118
110
this . logger = logger ;
119
- this . vuidManagerOptions = vuidManagerOptions ;
120
111
this . configPromise = resolvablePromise ( ) ;
121
112
122
113
const readinessDependencies : PromiseLike < unknown > [ ] = [ this . configPromise ] ;
You can’t perform that action at this time.
0 commit comments