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

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martinez <joelmartinez@gmail.com>2018-11-16 22:38:14 +0300
committerJoel Martinez <joelmartinez@gmail.com>2018-11-16 22:38:14 +0300
commitd75a2566e2589878c9d9820e3bcfb992519ae24c (patch)
treed999d86e26de148147b62b78a3088146c6bf9134
parent7c2f0f671ea90f1eb34fff88931bd99d87e53911 (diff)
minor change to set a keymdoc-5.7.4.2
-rw-r--r--mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs b/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs
index b67b4a0d..ba8531a4 100644
--- a/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs
+++ b/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs
@@ -70,8 +70,11 @@ namespace Mono.Documentation.Updater.Frameworks
try
{
var sig = formatter.GetDeclaration(member);
- if (sig != null && !sigMap.ContainsKey(sig))
- sigMap.Add(sig, string.Empty);
+ if (sig != null && !sigMap.ContainsKey (sig))
+ {
+ sigMap.Add (sig, string.Empty);
+ key = sig;
+ }
}
catch { }