From 7bf53cfb9563de1ba4883729a44dd6a70b0b1903 Mon Sep 17 00:00:00 2001 From: dnesov Date: Sun, 27 Jul 2025 13:42:32 +0200 Subject: [PATCH] Removed an unecessary comment --- Source/AudioFileAnalyzer.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/AudioFileAnalyzer.cs b/Source/AudioFileAnalyzer.cs index 2ea3c73..1df0d64 100644 --- a/Source/AudioFileAnalyzer.cs +++ b/Source/AudioFileAnalyzer.cs @@ -58,7 +58,6 @@ public partial class AudioFileAnalyzer : Node long sampleCount = reader.Length / reader.WaveFormat.BlockAlign; waveformInfo.Samples = new float[sampleCount]; - // Render the waveform byte[] buffer = new byte[reader.WaveFormat.BlockAlign]; for (int i = 0; i < sampleCount; i++) {