Skip to content

Commit c96fd81

Browse files
authored
Allow unclassified methods to be marked as neutral (#2477)
1 parent 134c440 commit c96fd81

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

extensions/ql-vscode/src/data-extensions-editor/auto-model.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,6 @@ export function parsePredictedClassifications(
8585
): Record<string, ModeledMethod> {
8686
const predictedBySignature: Record<string, Method[]> = {};
8787
for (const method of predicted) {
88-
if (!method.classification) {
89-
continue;
90-
}
91-
9288
const signature = toFullMethodSignature(method);
9389

9490
if (!(signature in predictedBySignature)) {

0 commit comments

Comments
 (0)