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 fda3948 commit 60c7003Copy full SHA for 60c7003
java/ql/src/Telemetry/ExternalAPI.qll
@@ -9,10 +9,10 @@ class ExternalAPI extends Callable {
9
10
predicate isInteresting() {
11
getNumberOfParameters() > 0 and
12
- not (
13
- getReturnType() instanceof VoidType or
14
- getReturnType() instanceof PrimitiveType or
15
- getReturnType() instanceof BoxedType
+ exists(Type retType | retType = getReturnType() |
+ not retType instanceof VoidType and
+ not retType instanceof PrimitiveType and
+ not retType instanceof BoxedType
16
)
17
}
18
0 commit comments