aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/Routing
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/Routing')
-rw-r--r--Software/Visual_Studio/Tango.Transport/Routing/SimpleTransportRouter.cs6
-rw-r--r--Software/Visual_Studio/Tango.Transport/Routing/TransportRoutingChannel.cs7
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;