File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -61,3 +61,9 @@ class Diagnostic extends @diagnostic {
61
61
/** Gets a textual representation of this diagnostic. */
62
62
string toString ( ) { result = this .getMessage ( ) }
63
63
}
64
+
65
+ /**
66
+ * Holds for extraction information keys that should be skipped from telemetry reports.
67
+ * This predicate can be extended by other packs to filter out specific telemetry keys.
68
+ */
69
+ extensible predicate extractorInformationSkipKey ( string key ) ;
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ import java
10
10
import semmle.code.java.Diagnostics
11
11
import DatabaseQuality
12
12
13
- extensible predicate extractorInformationSkipKey ( string key ) ;
14
-
15
13
predicate compilationInfo ( string key , int value ) {
16
14
exists ( Compilation c , string infoKey |
17
15
key = infoKey + ": " + c .getInfo ( infoKey ) and
Original file line number Diff line number Diff line change 1
1
extensions :
2
2
- addsTo :
3
- pack : codeql/java-queries
3
+ pack : codeql/java-all
4
4
extensible : extractorInformationSkipKey
5
5
data : []
You can’t perform that action at this time.
0 commit comments