diff options
| author | Mirta <mirta@twine-s.com> | 2020-12-30 16:39:52 +0200 |
|---|---|---|
| committer | Mirta <mirta@twine-s.com> | 2020-12-30 16:39:52 +0200 |
| commit | 00a491d93733d4625ad329b2ba8237f445364b3f (patch) | |
| tree | 4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/Tango.Transport/Routing | |
| parent | 124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff) | |
| download | Tango-00a491d9.tar.gz Tango-00a491d9.zip | |
merge
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/Routing')
| -rw-r--r-- | Software/Visual_Studio/Tango.Transport/Routing/SimpleTransportRouter.cs | 6 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.Transport/Routing/TransportRoutingChannel.cs | 7 |
2 files changed, 0 insertions, 13 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/Routing/SimpleTransportRouter.cs b/Software/Visual_Studio/Tango.Transport/Routing/SimpleTransportRouter.cs index a05ad7b00..6be334d95 100644 --- a/Software/Visual_Studio/Tango.Transport/Routing/SimpleTransportRouter.cs +++ b/Software/Visual_Studio/Tango.Transport/Routing/SimpleTransportRouter.cs @@ -14,11 +14,6 @@ namespace Tango.Transport.Routing public class SimpleTransportRouter : ITransportRouter { /// <summary> - /// Gets or sets the name of the transport component. - /// </summary> - public String ComponentName { get; set; } - - /// <summary> /// Occurs when component state changes. /// </summary> public event EventHandler<TransportComponentState> StateChanged; @@ -45,7 +40,6 @@ namespace Tango.Transport.Routing { Channels = new ObservableCollection<TransportRoutingChannel>(); Channels.CollectionChanged += OnChannelsCollectionChanged; - ComponentName = "Router"; } /// <summary> diff --git a/Software/Visual_Studio/Tango.Transport/Routing/TransportRoutingChannel.cs b/Software/Visual_Studio/Tango.Transport/Routing/TransportRoutingChannel.cs index 01b957975..aeb83fd48 100644 --- a/Software/Visual_Studio/Tango.Transport/Routing/TransportRoutingChannel.cs +++ b/Software/Visual_Studio/Tango.Transport/Routing/TransportRoutingChannel.cs @@ -13,11 +13,6 @@ namespace Tango.Transport.Routing public class TransportRoutingChannel : ITransportComponent { /// <summary> - /// Gets or sets the name of the transport component. - /// </summary> - public String ComponentName { get; set; } - - /// <summary> /// Occurs when component state changes. /// </summary> public event EventHandler<TransportComponentState> StateChanged; @@ -50,8 +45,6 @@ namespace Tango.Transport.Routing /// <param name="adapter2">The second adapter.</param> public TransportRoutingChannel(ITransportAdapter adapter1, ITransportAdapter adapter2) { - ComponentName = "Routing Channel"; - Adapter1 = adapter1; Adapter2 = adapter2; |
