Skip to content

Commit

Permalink
Unquote the replacement documentation on ObsoleteAnnotation
Browse files Browse the repository at this point in the history
  • Loading branch information
MDoerner committed Feb 27, 2020
1 parent 8c2fae8 commit d21dacf
Showing 1 changed file with 2 additions and 1 deletion.
@@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using Rubberduck.Common;

namespace Rubberduck.Parsing.Annotations
{
Expand All @@ -19,7 +20,7 @@ public override IReadOnlyList<string> ProcessAnnotationArguments(IEnumerable<str
var args = arguments.ToList();

ReplacementDocumentation = args.Any()
? args[0]
? args[0].UnQuote()
: string.Empty;

return base.ProcessAnnotationArguments(args);
Expand Down

0 comments on commit d21dacf

Please sign in to comment.