Skip to content

Commit

Permalink
🐛 Remove using.
Browse files Browse the repository at this point in the history
  • Loading branch information
AutumnSky1010 committed Jun 29, 2024
1 parent 8817ac2 commit a9a7168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SoundMaker/WaveFile/WaveWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void Write(string path)
/// <param name="stream">stream</param>
public void Write(Stream stream)
{
using var writer = new BinaryWriter(stream);
var writer = new BinaryWriter(stream);
foreach (var chunk in Chunks)
{
writer.Write(chunk.GetBytes());
Expand Down

0 comments on commit a9a7168

Please sign in to comment.