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:
authornosami <jasonimison@gmail.com>2019-08-05 14:08:49 +0300
committernosami <jasonimison@gmail.com>2019-08-05 14:08:49 +0300
commit944a3545e7e62ab8887ea8ca61734c0224973f61 (patch)
treee23593a554f1a09d98e31d26e4351c20eeaa1c20
parent850d962f0f9a98f5fa7f5b096df767e38932f0df (diff)
Style fix
-rw-r--r--Mono.Debugging.Soft/SoftDebuggerSession.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Mono.Debugging.Soft/SoftDebuggerSession.cs b/Mono.Debugging.Soft/SoftDebuggerSession.cs
index 138057b..4ee1a96 100644
--- a/Mono.Debugging.Soft/SoftDebuggerSession.cs
+++ b/Mono.Debugging.Soft/SoftDebuggerSession.cs
@@ -759,9 +759,8 @@ namespace Mono.Debugging.Soft
SourceLinkMap [] GetSourceLinkMaps (MethodMirror method)
{
var asm = method.DeclaringType.Assembly;
- SourceLinkMap [] maps = Array.Empty<SourceLinkMap>();
- if (SourceLinkCache.TryGetValue (asm, out maps)) {
+ if (SourceLinkCache.TryGetValue (asm, out SourceLinkMap[] maps)) {
return maps;
}