From a81f1375e53b0e6ba9c0622e565785a607db43de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristina=20Isabel=20Ca=C3=B1izales?= Date: Wed, 15 Jan 2025 19:27:13 -0300 Subject: [PATCH] chore: sort imports --- .../src/commands/apexActionController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/salesforcedx-vscode-apex/src/commands/apexActionController.ts b/packages/salesforcedx-vscode-apex/src/commands/apexActionController.ts index 1328f83481..df0961799f 100644 --- a/packages/salesforcedx-vscode-apex/src/commands/apexActionController.ts +++ b/packages/salesforcedx-vscode-apex/src/commands/apexActionController.ts @@ -4,6 +4,7 @@ * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ +import { AuthFields, AuthInfo } from '@salesforce/core-bundle'; import { ConfigUtil, notificationService, workspaceUtils } from '@salesforce/salesforcedx-utils-vscode'; import { RegistryAccess } from '@salesforce/source-deploy-retrieve-bundle'; import { XMLBuilder, XMLParser } from 'fast-xml-parser'; @@ -20,7 +21,6 @@ import { } from '../openApiUtilities/schemas'; import { getTelemetryService } from '../telemetry/telemetry'; import { MetadataOrchestrator } from './metadataOrchestrator'; -import { AuthFields, AuthInfo } from '@salesforce/core-bundle'; export class ApexActionController { constructor(private metadataOrchestrator: MetadataOrchestrator) {}