Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Feb 2, 2024
1 parent 87f47b1 commit 5a99fcb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions cpp/controllers/generic_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,7 @@ void GenericController::Receive()
break;

case phase_t::dataout:
// Block-oriented data have been handled above
DataOutNonBlockOriented();
DataOut();
Status();
break;

Expand All @@ -443,7 +442,7 @@ void GenericController::Receive()
}
}

void GenericController::DataOutNonBlockOriented() const
void GenericController::DataOut() const
{
assert(IsDataOut());

Expand Down
2 changes: 1 addition & 1 deletion cpp/controllers/generic_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class GenericController : public AbstractController
void Receive();

void Execute();
void DataOutNonBlockOriented() const;
void DataOut() const;

virtual void ParseMessage() = 0;
virtual void ProcessMessage() = 0;
Expand Down

0 comments on commit 5a99fcb

Please sign in to comment.