Skip to content

Commit 2845bd7

Browse files
author
Szymon Jędrych
authored
Make FileSystemStream path argument non-nullable (#956)
1 parent 04e117c commit 2845bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TestableIO.System.IO.Abstractions/FileSystemStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public override int WriteTimeout
6666
/// The <see cref="FileStream.IsAsync" /> flag, indicating if the <see cref="FileStream" /> was
6767
/// opened asynchronously or synchronously.
6868
/// </param>
69-
protected FileSystemStream(Stream stream, string? path, bool isAsync)
69+
protected FileSystemStream(Stream stream, string path, bool isAsync)
7070
{
7171
if (path is null)
7272
{

0 commit comments

Comments
 (0)