Skip to content

Commit

Permalink
Updated code formatting to match rules in .editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 31, 2024
1 parent 821c37d commit 505b3ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected virtual Expression ProcessStatementAsync<TNext>( Expression<FunctionAs
Await(
Invoke( Middleware,
context,
Convert( nextArgument, typeof(object)),
Convert( nextArgument, typeof( object ) ),
middlewareNext
),
configureAwait: false ),
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperbee.Pipeline/Binders/CallBlockBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ public Expression<FunctionAsync<TInput, TOutput>> Bind( Expression<FunctionAsync

IfThenElse( canceled,
Block(
Assign( result, Default( typeof(TOutput) ) )//,
//Return( returnValue, result )
Assign( result, Default( typeof( TOutput ) ) )//,
//Return( returnValue, result )
),
Block(
Await(
ProcessBlockAsync( next, context, nextArgument ),
configureAwait: false
),
Assign( result, nextArgument )//,
//Return( returnValue, result )
//Return( returnValue, result )
)
),
result
Expand Down
2 changes: 1 addition & 1 deletion src/Hyperbee.Pipeline/Binders/CallStatementBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Expression<FunctionAsync<TInput, TOutput>> Bind( Expression<ProcedureAsyn
Assign( awaitedResult, Await( ProcessPipelineAsync( context, argument ), configureAwait: false ) ),

Condition( canceled,
Default( typeof(TOutput) ),
Default( typeof( TOutput ) ),
Await(
ProcessStatementAsync( nextExpression, context, nextArgument, defaultName ),
configureAwait: false
Expand Down

0 comments on commit 505b3ad

Please sign in to comment.