From f143dad1b29adf5df0b63bb1422c14262ab1e2e2 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 16 Jun 2026 08:57:37 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- shared/typeflow/codeql/typeflow/TypeFlow.qll | 4 ++-- shared/typeflow/codeql/typeflow/UniversalFlow.qll | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/typeflow/codeql/typeflow/TypeFlow.qll b/shared/typeflow/codeql/typeflow/TypeFlow.qll index 87840fb4d64..d34604fcc56 100644 --- a/shared/typeflow/codeql/typeflow/TypeFlow.qll +++ b/shared/typeflow/codeql/typeflow/TypeFlow.qll @@ -30,8 +30,8 @@ signature module TypeFlowInput { } /** - * Gets an identifier for node `n`, if any. When not implemented for a given node, - * the library will use location-based ranking. + * Gets an identifier for node `n`, if any. When no identifier is provided for `n`, + * the library falls back to location-based ranking. */ default int getTypeFlowNodeId(TypeFlowNode n) { none() } diff --git a/shared/typeflow/codeql/typeflow/UniversalFlow.qll b/shared/typeflow/codeql/typeflow/UniversalFlow.qll index ddf01e7dd8b..64a0ed846a0 100644 --- a/shared/typeflow/codeql/typeflow/UniversalFlow.qll +++ b/shared/typeflow/codeql/typeflow/UniversalFlow.qll @@ -46,8 +46,8 @@ signature module UniversalFlowInput { } /** - * Gets an identifier for node `n`, if any. When not implemented for a given node, - * the library will use location-based ranking. + * Gets an identifier for node `n`, if any. When no identifier is provided for `n`, + * the library falls back to location-based ranking. */ default int getFlowNodeId(FlowNode n) { none() }