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 51af03d commit 6806b87Copy full SHA for 6806b87
java/ql/src/Telemetry/ExternalApi.qll
@@ -27,8 +27,9 @@ class ExternalApi extends Callable {
27
*/
28
string getApiName() {
29
result =
30
- this.getDeclaringType().getPackage() + "." + this.getDeclaringType().nestedName() + "#" +
31
- this.getName() + paramsString(this)
+ this.getDeclaringType().getPackage() + "." +
+ this.getDeclaringType().getSourceDeclaration().nestedName() + "#" + this.getName() +
32
+ paramsString(this)
33
}
34
35
private string getJarName() {
0 commit comments