We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4dec59 commit e8f56f2Copy full SHA for e8f56f2
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 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