From c1e60a27770ed332b7e77299fda9018984d171dd Mon Sep 17 00:00:00 2001 From: George Choustoulakis Date: Mon, 22 Jul 2024 13:08:24 +0200 Subject: [PATCH] Cleanup --- adscript/src/integration/AdScriptTHEOIntegration.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/adscript/src/integration/AdScriptTHEOIntegration.ts b/adscript/src/integration/AdScriptTHEOIntegration.ts index c0c78374..06e36686 100644 --- a/adscript/src/integration/AdScriptTHEOIntegration.ts +++ b/adscript/src/integration/AdScriptTHEOIntegration.ts @@ -29,7 +29,6 @@ interface LogPoint { } export class AdScriptTHEOIntegration { - // References for constructor arguments private player: ChromelessPlayer; private logger: Logger; private readonly adProcessor: ((ad: Ad) => EmbeddedContentMetadata) | undefined; @@ -39,8 +38,6 @@ export class AdScriptTHEOIntegration { private currentAdMetadata: EmbeddedContentMetadata | undefined; private currentAdLogPoints: LogPoint[] = []; - private latestReportedEvent: string | undefined; - private JHMTApi = window.JHMTApi; private JHMT = window.JHMT; @@ -134,7 +131,6 @@ export class AdScriptTHEOIntegration { } } - // EVENT HANDLERS private onDurationChange = (event: DurationChangeEvent) => { if (this.player.ads?.playing || this.mainContentLogPoints.length) return; const { duration } = event;