Skip to content

Commit 437fd3f

Browse files
committed
Fixing interface implementation
1 parent 5684a04 commit 437fd3f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/TestSupport/MockStrategyChain.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public IStrategyChain Reverse()
6868
/// </summary>
6969
/// <param name="context">Context for the build processes.</param>
7070
/// <returns>The build up object</returns>
71-
public object ExecuteBuildUp(IBuilderContext builderContext)
71+
public void BuildUp(IBuilderContext builderContext)
7272
{
7373
var context = builderContext ?? throw new ArgumentNullException(nameof(builderContext));
7474
int i = 0;
@@ -93,7 +93,6 @@ public object ExecuteBuildUp(IBuilderContext builderContext)
9393
{
9494
_strategies[i].PostBuildUp(context);
9595
}
96-
return context.Existing;
9796
}
9897
catch (Exception)
9998
{

0 commit comments

Comments
 (0)