Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Bussmann <timbussmann@users.noreply.github.com>
  • Loading branch information
mikeminutillo and timbussmann authored Mar 22, 2022
1 parent 406ed89 commit abfd3d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ protected override void ConfigureHowToFindSaga(SagaPropertyMapper<SagaData> mapp
{
mapper.MapSaga(saga => saga.TheId)
.ToMessage<StartReplySaga>(msg => msg.TheId)
.ToMessage<Reply>(msg => msg.TheId)
;
.ToMessage<Reply>(msg => msg.TheId);
}

public Task Handle(StartReplySaga message, IMessageHandlerContext context)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ public class MyTimeoutSagaVersion1 :
protected override void ConfigureHowToFindSaga(SagaPropertyMapper<SagaData> mapper)
{
mapper.MapSaga(saga => saga.TheId)
.ToMessage<StartTimeoutSaga>(msg => msg.TheId)
;
.ToMessage<StartTimeoutSaga>(msg => msg.TheId);
}

public Task Handle(StartTimeoutSaga message, IMessageHandlerContext context)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ protected override void ConfigureHowToFindSaga(SagaPropertyMapper<SagaData> mapp
{
mapper.MapSaga(saga => saga.TheId)
.ToMessage<StartReplySaga>(msg => msg.TheId)
.ToMessage<Reply>(msg => msg.TheId)
;
.ToMessage<Reply>(msg => msg.TheId);
}

public Task Handle(StartReplySaga message, IMessageHandlerContext context)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ public class MyTimeoutSagaVersion2 :
protected override void ConfigureHowToFindSaga(SagaPropertyMapper<SagaData> mapper)
{
mapper.MapSaga(saga => saga.TheId)
.ToMessage<StartTimeoutSaga>(msg => msg.TheId)
;
.ToMessage<StartTimeoutSaga>(msg => msg.TheId);
}

public Task Handle(StartTimeoutSaga message, IMessageHandlerContext context)
Expand Down

0 comments on commit abfd3d7

Please sign in to comment.