Skip to content

Commit

Permalink
Removed dead code (#5351)
Browse files Browse the repository at this point in the history
Signed-off-by: Mihir Patel <mihir.patel@fortescue.com>
  • Loading branch information
fwae-mihir authored Oct 25, 2024
1 parent d325d12 commit 2a1cdf6
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,21 +331,6 @@ class DiscoverySettings
std::string static_edp_xml_config_ = "";
};

/**
* TypeLookupService settings.
*/
class TypeLookupSettings
{
public:

//!Indicates to use the TypeLookup Service client endpoints
bool use_client = false;

//!Indicates to use the TypeLookup Service server endpoints
bool use_server = false;

};

/**
* Class BuiltinAttributes, to define the behavior of the RTPSParticipant builtin protocols.
* @ingroup RTPS_ATTRIBUTES_MODULE
Expand All @@ -360,9 +345,6 @@ class BuiltinAttributes
//! Indicates to use the WriterLiveliness protocol.
bool use_WriterLivelinessProtocol = true;

//! TypeLookup Service settings
TypeLookupSettings typelookup_config;

//! Network Configuration
NetworkConfigSet_t network_configuration;

Expand Down Expand Up @@ -407,8 +389,6 @@ class BuiltinAttributes
{
return (this->discovery_config == b.discovery_config) &&
(this->use_WriterLivelinessProtocol == b.use_WriterLivelinessProtocol) &&
(typelookup_config.use_client == b.typelookup_config.use_client) &&
(typelookup_config.use_server == b.typelookup_config.use_server) &&
(this->network_configuration == b.network_configuration) &&
(this->metatrafficUnicastLocatorList == b.metatrafficUnicastLocatorList) &&
(this->metatrafficMulticastLocatorList == b.metatrafficMulticastLocatorList) &&
Expand Down

0 comments on commit 2a1cdf6

Please sign in to comment.