From f04ff1995a22327ea96b8873325cf4161c20d48a Mon Sep 17 00:00:00 2001 From: db123 Date: Thu, 23 Apr 2026 00:20:29 +0330 Subject: [PATCH] refactored: removed some functions from vp i will implement these later but not now --- src/core/VideoPlayer.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/VideoPlayer.ts b/src/core/VideoPlayer.ts index 6449320..85d6ce8 100644 --- a/src/core/VideoPlayer.ts +++ b/src/core/VideoPlayer.ts @@ -21,8 +21,4 @@ export class VP { this.videoElement = document.querySelector(video); this.videoSources = this.videoElement?.querySelectorAll("source"); } - - private adapters(): void {} - private ui(): void {} - private plugins(): void {} }