We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9f6b60 commit 07303ccCopy full SHA for 07303cc
java/ql/src/Telemetry/ExternalLibraryUsage.ql
@@ -12,5 +12,4 @@ where not api.getDeclaringType() instanceof TestLibrary
12
// TODO [bm]: the count is not aggregated and we have the same jar with multiple usages, e.g.
13
// 1 protobuf-java-3.17.3.jar 373
14
// 2 protobuf-java-3.17.3.jar 48
15
-select api.jarName() as jarname, count(Call c | c.getCallee() = api) as Usages
16
-order by Usages desc
+select api.jarName() as jarname, count(Call c | c.getCallee() = api) as Usages order by Usages desc
0 commit comments