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 dc51226 commit 083b8d1Copy full SHA for 083b8d1
csharp/ql/src/Telemetry/ExternalApi.qll
@@ -33,7 +33,9 @@ private predicate isParameterlessConstructor(DotNet::Callable c) {
33
private predicate isTestLibrary(DotNet::Callable c) { c.getDeclaringType() instanceof TestLibrary }
34
35
/** Holds if the given callable is not worth supporting. */
36
-predicate isUninteresting(DotNet::Callable c) { isTestLibrary(c) or isParameterlessConstructor(c) }
+private predicate isUninteresting(DotNet::Callable c) {
37
+ isTestLibrary(c) or isParameterlessConstructor(c)
38
+}
39
40
/**
41
* An external API from either the C# Standard Library or a 3rd party library.
0 commit comments