From 3183f991538628dc96550b9f7b343442cca2bf56 Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Sat, 21 Aug 2021 08:45:43 -0600 Subject: [PATCH] Remove unnecessary overrides. --- LibationWinForms/BookLiberation/AudioDecodeForm.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/LibationWinForms/BookLiberation/AudioDecodeForm.cs b/LibationWinForms/BookLiberation/AudioDecodeForm.cs index 4d8f66b8..aa3cfa3e 100644 --- a/LibationWinForms/BookLiberation/AudioDecodeForm.cs +++ b/LibationWinForms/BookLiberation/AudioDecodeForm.cs @@ -39,7 +39,6 @@ namespace LibationWinForms.BookLiberation #endregion #region IStreamable event handler overrides - public override void OnStreamingBegin(object sender, string beginString) { } public override void OnStreamingProgressChanged(object sender, DownloadProgress downloadProgress) { if (!downloadProgress.ProgressPercentage.HasValue) @@ -54,7 +53,6 @@ namespace LibationWinForms.BookLiberation public override void OnStreamingTimeRemaining(object sender, TimeSpan timeRemaining) => updateRemainingTime((int)timeRemaining.TotalSeconds); - public override void OnStreamingCompleted(object sender, string completedString) { } #endregion #region IAudioDecodable event handlers