File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public Storage OpenStorage(string name)
119
119
? storage !
120
120
: throw new DirectoryNotFoundException ( $ "Storage not found: { name } .") ;
121
121
122
- public bool TryOpenStorage ( string name , [ MaybeNullWhen ( false ) ] out Storage ? storage )
122
+ public bool TryOpenStorage ( string name , [ MaybeNullWhen ( false ) ] out Storage storage )
123
123
{
124
124
ThrowHelper . ThrowIfNameIsInvalid ( name ) ;
125
125
@@ -141,7 +141,7 @@ public CfbStream OpenStream(string name)
141
141
? stream !
142
142
: throw new FileNotFoundException ( $ "Stream not found: { name } .", name ) ;
143
143
144
- public bool TryOpenStream ( string name , [ MaybeNullWhen ( false ) ] out CfbStream ? stream )
144
+ public bool TryOpenStream ( string name , [ MaybeNullWhen ( false ) ] out CfbStream stream )
145
145
{
146
146
ThrowHelper . ThrowIfNameIsInvalid ( name ) ;
147
147
this . ThrowIfDisposed ( Context . IsDisposed ) ;
You can’t perform that action at this time.
0 commit comments