Skip to content

Commit

Permalink
chore: remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreinacher committed Sep 13, 2020
1 parent 8c65752 commit f5461d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/System.IO.Abstractions.TestingHelpers/MockFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ public override Stream Create(string path, int bufferSize) =>
Create(path, bufferSize, FileOptions.None);

public override Stream Create(string path, int bufferSize, FileOptions options) =>
CreateInternal(path, bufferSize, options, null);
CreateInternal(path, options, null);

private Stream CreateInternal(string path, int bufferSize, FileOptions options, FileSecurity fileSecurity)
private Stream CreateInternal(string path, FileOptions options, FileSecurity fileSecurity)
{
if (path == null)
{
Expand Down

0 comments on commit f5461d0

Please sign in to comment.