Skip to content

Commit

Permalink
Remove useless explicit parent constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
domwst committed Dec 19, 2023
1 parent d6a7d5f commit 86f5c78
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ydb/core/keyvalue/keyvalue_flat_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ class TKeyValueFlat : public TActor<TKeyValueFlat>, public NTabletFlatExecutor::
TVector<TLogoBlobID> TrashBeingCommitted;

TTxRequest(THolder<TIntermediate> intermediate, TKeyValueFlat *keyValueFlat)
: NTabletFlatExecutor::ITransaction(NLWTrace::TOrbit())
, Intermediate(std::move(intermediate))
: Intermediate(std::move(intermediate))
, Self(keyValueFlat)
{
Intermediate->Response.SetStatus(NMsgBusProxy::MSTATUS_UNKNOWN);
Expand Down

0 comments on commit 86f5c78

Please sign in to comment.