Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@gmail.com>2020-07-13 12:29:46 +0300
committerDavid Karlaš <david.karlas@gmail.com>2020-07-13 12:29:46 +0300
commit0bc891cfed8ee72434a8f4eeb040b6c903969d0f (patch)
treed23ee32ae6ed060547d01a9e3dfd865de6017ae4 /Mono.Debugger.Soft
parentb93af7bda25ba6e384dccbea8a664c01b341c5af (diff)
Since this is public API we can't add more abstract methods
Hence add virtual so we don't break compatibility...
Diffstat (limited to 'Mono.Debugger.Soft')
-rw-r--r--Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs b/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
index fe0ab21..6ebae58 100644
--- a/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
+++ b/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
@@ -1329,7 +1329,7 @@ namespace Mono.Debugger.Soft
protected abstract void TransportSetTimeouts (int send_timeout, int receive_timeout);
protected abstract void TransportClose ();
// Shutdown breaks all communication, resuming blocking waits
- protected abstract void TransportShutdown ();
+ protected virtual void TransportShutdown () { }
internal VersionInfo Version;