Skip to content

Commit

Permalink
ExampleStep -> DelayOneSecondStep
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Sep 20, 2024
1 parent 3b765b0 commit 54b545d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Refresher.Core/Pipelines/ExamplePipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ public class ExamplePipeline : Pipeline
protected override List<Type> StepTypes { get; } =
[
typeof(ExampleInputStep),
typeof(ExampleStep),
typeof(ExampleStep),
typeof(ExampleStep),
typeof(ExampleStep),
typeof(ExampleStep),
typeof(DelayOneSecondStep),
typeof(DelayOneSecondStep),
typeof(DelayOneSecondStep),
typeof(DelayOneSecondStep),
typeof(DelayOneSecondStep),
];
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace Refresher.Core.Pipelines.Steps;

public class ExampleStep : Step
public class DelayOneSecondStep : Step
{
public ExampleStep(Pipeline pipeline) : base(pipeline)
public DelayOneSecondStep(Pipeline pipeline) : base(pipeline)
{
}

Expand Down

0 comments on commit 54b545d

Please sign in to comment.