Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a69f1 commit fa3b65fCopy full SHA for fa3b65f
1 file changed
csharp/ql/src/Telemetry/ExtractorInformation.ql
@@ -136,14 +136,6 @@ predicate analyzerAssemblies(string key, float value) {
136
value = 1.0
137
}
138
139
-predicate timingValues(string key, float value) {
140
- exists(Compilation c |
141
- key = "Total elapsed seconds" and value = c.getElapsedSeconds()
142
- or
143
- key = "Extractor elapsed seconds" and value = c.getExtractorElapsedSeconds()
144
- )
145
-}
146
-
147
from string key, float value
148
where
149
(
@@ -173,8 +165,7 @@ where
173
165
ExprStatsReport::numberOfOk(key, value) or
174
166
ExprStatsReport::numberOfNotOk(key, value) or
175
167
ExprStatsReport::percentageOfOk(key, value) or
176
- analyzerAssemblies(key, value) or
177
- timingValues(key, value)
168
+ analyzerAssemblies(key, value)
178
169
) and
179
170
/* Infinity */
180
171
value != 1.0 / 0.0 and
0 commit comments