We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f56f2 commit 0f75449Copy full SHA for 0f75449
csharp/extractor/Semmle.Extraction.CSharp/Entities/Method.cs
@@ -245,7 +245,7 @@ public static void AddExplicitInterfaceQualifierToId(Context cx, EscapingTextWri
245
// Retrieve the original method kind
246
if (methodDecl.ExplicitInterfaceImplementations.IsEmpty)
247
{
248
- throw new InternalError(methodDecl, $"Couldn't get the original method kind for an explicit interface implementation");
+ throw new InternalError(methodDecl, "Couldn't get the original method kind for an explicit interface implementation");
249
}
250
251
methodKind = methodDecl.ExplicitInterfaceImplementations.Select(m => m.MethodKind).First();
0 commit comments