From 908712e19d2d028df9352f55be9046a47eeae303 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Tue, 15 Jul 2025 11:06:27 -0700 Subject: [PATCH] fix: Refer to correct replacement method in deprecation warning. (#9237) --- core/workspace.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/workspace.ts b/core/workspace.ts index 5f2051939..88745f420 100644 --- a/core/workspace.ts +++ b/core/workspace.ts @@ -469,7 +469,7 @@ export class Workspace { 'Blockly.Workspace.getVariableUsesById', 'v12', 'v13', - 'Blockly.Workspace.getVariableMap().getVariableUsesById', + 'Blockly.Variables.getVariableUsesById', ); return getVariableUsesById(this, id); }