Skip to content

Commit 072aba8

Browse files
authored
Update WavUtility.cs
1 parent 9285154 commit 072aba8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

EXILED/Exiled.API/Features/Audio/WavUtility.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Exiled.API.Features.Audio
1414
using VoiceChat;
1515

1616
/// <summary>
17-
/// Provides utility methods for working with WAV audio files, such as converting to PCM data and validating headers.
17+
/// Provides utility methods for working with WAV audio files.
1818
/// </summary>
1919
public static class WavUtility
2020
{
@@ -49,9 +49,6 @@ public static float[] WavToPcm(string path)
4949
/// Skips the WAV file header and validates that the format is PCM16 mono with the specified sample rate.
5050
/// </summary>
5151
/// <param name="br">The <see cref="BinaryReader"/> to read from.</param>
52-
/// <exception cref="InvalidDataException">
53-
/// Thrown if the WAV file is not PCM16, mono, or does not match the expected sample rate.
54-
/// </exception>
5552
public static void SkipHeader(BinaryReader br)
5653
{
5754
br.ReadBytes(12);

0 commit comments

Comments
 (0)