Skip to content

Commit

Permalink
Make FileSystemStream path argument non-nullable (#956)
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon Jędrych authored Mar 7, 2023
1 parent 04e117c commit 2845bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestableIO.System.IO.Abstractions/FileSystemStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public override int WriteTimeout
/// The <see cref="FileStream.IsAsync" /> flag, indicating if the <see cref="FileStream" /> was
/// opened asynchronously or synchronously.
/// </param>
protected FileSystemStream(Stream stream, string? path, bool isAsync)
protected FileSystemStream(Stream stream, string path, bool isAsync)
{
if (path is null)
{
Expand Down

0 comments on commit 2845bd7

Please sign in to comment.