Skip to content

Commit 8b8d174

Browse files
committed
Clean up some more TODOs
1 parent 370b17c commit 8b8d174

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

extensions/ql-vscode/src/query-history/query-history-manager.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,14 +689,12 @@ export class QueryHistoryManager extends DisposableObject {
689689
singleItem: QueryHistoryInfo,
690690
multiSelect: QueryHistoryInfo[] | undefined,
691691
) {
692-
// TODO: reduce duplication with 'handleCompareWith'
693692
multiSelect ||= [singleItem];
694693

695694
if (
696695
!this.isSuccessfulCompletedLocalQueryInfo(singleItem) ||
697696
!multiSelect.every(this.isSuccessfulCompletedLocalQueryInfo)
698697
) {
699-
// TODO: support performance comparison with partially-evaluated query (technically possible)
700698
throw new Error(
701699
"Please only select local queries that have completed successfully.",
702700
);

0 commit comments

Comments
 (0)