Skip to content

Commit

Permalink
Remove unused constructors.
Browse files Browse the repository at this point in the history
  • Loading branch information
tosh-coding committed Jun 15, 2024
1 parent 939cf74 commit cd06e92
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/AsyncFiberWorks/Fibers/ThreadFiber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,6 @@ public ThreadFiber(IDedicatedConsumerThreadWork queue, string threadName, bool i
_workerThread.Start();
}

/// <summary>
/// Creates a thread fiber.
/// </summary>
/// <param name="consumerThread">A consumer thread.</param>
public ThreadFiber(UserWorkerThread consumerThread)
{
_eventArgs = new FiberExecutionEventArgs(this.Pause, this.Resume);
_workerThread = consumerThread;
_workerThread.Start();
}

/// <summary>
/// Stop the thread.
/// </summary>
Expand Down

0 comments on commit cd06e92

Please sign in to comment.