aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs b/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
index ca40cce7a..161277459 100644
--- a/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
+++ b/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
@@ -108,7 +108,7 @@ namespace Tango.Emulations
/// <summary>
/// Stops this instance.
/// </summary>
- public virtual async Task Stop()
+ public async Task Stop()
{
if (IsStarted)
{
@@ -120,7 +120,7 @@ namespace Tango.Emulations
/// <summary>
/// Starts this instance.
/// </summary>
- public virtual async Task Start()
+ public async Task Start()
{
if (!IsStarted)
{
@@ -152,7 +152,7 @@ namespace Tango.Emulations
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="container">The container.</param>
- protected abstract void OnTransporterRequestReceived(object sender, RequestReceivedEventArgs e);
+ protected abstract void OnTransporterRequestReceived(object sender, MessageContainer container);
#endregion