Skip to content

Commit b4909f6

Browse files
committed
removed commented lines
1 parent 5cf33c2 commit b4909f6

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

TestingHelpers/MockFile.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ public override Stream Open(string path, FileMode mode, FileAccess access)
226226

227227
public override Stream Open(string path, FileMode mode, FileAccess access, FileShare share)
228228
{
229-
//return new MockFileStream(path, mode, access, share);
230229
bool exists = mockFileDataAccessor.FileExists(path);
231230

232231
if (mode == FileMode.CreateNew && exists)
@@ -267,7 +266,6 @@ public override StreamReader OpenText(string path)
267266
public override Stream OpenWrite(string path)
268267
{
269268
return new MockFileStream(mockFileDataAccessor, path);
270-
//return Open(path, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
271269
}
272270

273271
public override byte[] ReadAllBytes(string path)

0 commit comments

Comments
 (0)