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';
2727import { invalidOdpDataFound } from './odp_utils' ;
2828import { OdpEvent } from './odp_event' ;
2929import { resolvablePromise , ResolvablePromise } from '../../utils/promise/resolvablePromise' ;
30- import { VuidManagerOptions } from '../../shared_types' ;
3130
3231/**
3332 * Manager for handling internal all business logic related to
@@ -94,29 +93,21 @@ export abstract class OdpManager implements IOdpManager {
9493 */
9594 odpIntegrationConfig ?: OdpIntegrationConfig ;
9695
97- /**
98- * Options for handling VUID Manager
99- */
100- protected vuidManagerOptions ?: VuidManagerOptions ;
101-
10296 // TODO: Consider accepting logger as a parameter and initializing it in constructor instead
10397 constructor ( {
10498 odpIntegrationConfig,
10599 segmentManager,
106100 eventManager,
107101 logger,
108- vuidManagerOptions,
109102 } : {
110103 odpIntegrationConfig ?: OdpIntegrationConfig ;
111104 segmentManager : IOdpSegmentManager ;
112105 eventManager : IOdpEventManager ;
113106 logger : LogHandler ;
114- vuidManagerOptions ?: VuidManagerOptions ;
115107 } ) {
116108 this . segmentManager = segmentManager ;
117109 this . eventManager = eventManager ;
118110 this . logger = logger ;
119- this . vuidManagerOptions = vuidManagerOptions ;
120111 this . configPromise = resolvablePromise ( ) ;
121112
122113 const readinessDependencies : PromiseLike < unknown > [ ] = [ this . configPromise ] ;
You can’t perform that action at this time.
0 commit comments