We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2fae8 commit d21dacfCopy full SHA for d21dacf
Rubberduck.Parsing/Annotations/Concrete/ObsoleteAnnotation.cs
@@ -1,5 +1,6 @@
1
using System.Collections.Generic;
2
using System.Linq;
3
+using Rubberduck.Common;
4
5
namespace Rubberduck.Parsing.Annotations
6
{
@@ -19,7 +20,7 @@ public override IReadOnlyList<string> ProcessAnnotationArguments(IEnumerable<str
19
20
var args = arguments.ToList();
21
22
ReplacementDocumentation = args.Any()
- ? args[0]
23
+ ? args[0].UnQuote()
24
: string.Empty;
25
26
return base.ProcessAnnotationArguments(args);
0 commit comments