From 5c045586de50887dcb83c001733e5ff9de4d2142 Mon Sep 17 00:00:00 2001 From: Roman Melnyk Date: Tue, 26 Mar 2024 18:18:00 +0200 Subject: [PATCH] #2489 Remove depreaction warning as Statistics is not exposed. --- JitsiMeetJS.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/JitsiMeetJS.ts b/JitsiMeetJS.ts index 1541a4c5b0..ab21f495bc 100644 --- a/JitsiMeetJS.ts +++ b/JitsiMeetJS.ts @@ -512,12 +512,8 @@ export default { * Checks if local tracks can collect stats and collection is enabled. * * @returns {boolean} True if stats are being collected for local tracks. - * @deprecated use Statistics.isCollectingLocalStats instead */ isCollectingLocalStats() { - logger.warn('This method is deprecated, use ' - + 'Statistics.isCollectingLocalStats instead'); - return Statistics.isCollectingLocalStats(); },