Skip to content

Commit e5ed209

Browse files
author
Andrea Bravaccino
committed
refactor: remove unused parameter documentation in getSalesforceOrgInfo function
1 parent 38161eb commit e5ed209

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/utils/connection.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const execAsync = promisify(exec);
99

1010
/**
1111
* Executes the Salesforce CLI command to get org information
12-
* @param projectPath Optional path to the Salesforce project root
1312
* @returns Parsed response from sf org display --json command
1413
*/
1514
async function getSalesforceOrgInfo(): Promise<SalesforceCLIResponse> {
@@ -39,7 +38,6 @@ async function getSalesforceOrgInfo(): Promise<SalesforceCLIResponse> {
3938
if (stderr) {
4039
console.warn('[Salesforce CLI] STDERR:', stderr);
4140
}
42-
4341
// Try to parse stdout as JSON
4442
let response: SalesforceCLIResponse;
4543
try {

0 commit comments

Comments
 (0)