Skip to content

Commit

Permalink
commenting, logging + minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Dec 11, 2024
1 parent 8e9fa32 commit 63082f3
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 134 deletions.
2 changes: 1 addition & 1 deletion ecal/core/include/ecal/ecal_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ namespace eCAL
* @return True if successful.
**/
ECAL_API_EXPORTED_MEMBER
bool RemMethodCallback(const std::string& method_);
bool RemoveMethodCallback(const std::string& method_);

/**
* @brief Retrieve service name.
Expand Down
4 changes: 2 additions & 2 deletions ecal/core/src/service/ecal_service_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ namespace eCAL
return false;
}

bool CServiceServer::RemMethodCallback(const std::string& method_)
bool CServiceServer::RemoveMethodCallback(const std::string& method_)
{
if (m_service_server_impl)
{
return m_service_server_impl->RemMethodCallback(method_);
return m_service_server_impl->RemoveMethodCallback(method_);
}
return false;
}
Expand Down
Loading

0 comments on commit 63082f3

Please sign in to comment.