We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5684a04 commit 437fd3fCopy full SHA for 437fd3f
tests/TestSupport/MockStrategyChain.cs
@@ -68,7 +68,7 @@ public IStrategyChain Reverse()
68
/// </summary>
69
/// <param name="context">Context for the build processes.</param>
70
/// <returns>The build up object</returns>
71
- public object ExecuteBuildUp(IBuilderContext builderContext)
+ public void BuildUp(IBuilderContext builderContext)
72
{
73
var context = builderContext ?? throw new ArgumentNullException(nameof(builderContext));
74
int i = 0;
@@ -93,7 +93,6 @@ public object ExecuteBuildUp(IBuilderContext builderContext)
93
94
_strategies[i].PostBuildUp(context);
95
}
96
- return context.Existing;
97
98
catch (Exception)
99
0 commit comments