From b5f8aefe6dfe78d648f101c33815d67749ebbf41 Mon Sep 17 00:00:00 2001 From: Christopher Dwyer-Perkins Date: Wed, 19 Feb 2025 16:30:09 -0400 Subject: [PATCH] Removed the random uuid virtual variable from device info --- src/adapters/customVariables/ifDeviceInfo.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/adapters/customVariables/ifDeviceInfo.ts b/src/adapters/customVariables/ifDeviceInfo.ts index 81f9aa1d..d3d1b6c2 100644 --- a/src/adapters/customVariables/ifDeviceInfo.ts +++ b/src/adapters/customVariables/ifDeviceInfo.ts @@ -94,15 +94,6 @@ export function pushIfDeviceInfoVariables(adapter: DebugProtocolAdapter, express children: [] }); - pushCustomVariableToContainer(adapter, container, { - name: '$randomUUID', - type: VariableType.String, - presentationHint: { kind: 'virtual', lazy: true }, - evaluateName: `${expression}.GetRandomUUID()`, - value: '', - children: [] - }); - pushCustomVariableToContainer(adapter, container, { name: '$timeZone', type: VariableType.String,