Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit c191f7e

Browse files
Removing unused constructor
1 parent fd678d6 commit c191f7e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/GitHub.Api/Tasks/ProcessTask.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -497,13 +497,7 @@ public SimpleListProcessTask(CancellationToken token, NPath fullPathToExecutable
497497
this.fullPathToExecutable = fullPathToExecutable;
498498
this.arguments = arguments;
499499
}
500-
501-
public SimpleListProcessTask(CancellationToken token, string arguments, IOutputProcessor<string, List<string>> processor = null)
502-
: base(token, processor ?? new SimpleListOutputProcessor())
503-
{
504-
this.arguments = arguments;
505-
}
506-
500+
507501
public override string ProcessName => fullPathToExecutable;
508502
public override string ProcessArguments => arguments;
509503
}

0 commit comments

Comments
 (0)