Skip to content

Commit

Permalink
connectionManagementService restored
Browse files Browse the repository at this point in the history
  • Loading branch information
smartguest committed Mar 13, 2020
1 parent c52272d commit 9704a63
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,22 +223,6 @@ export class ConnectionManagementService extends Disposable implements IConnecti
});
}

/**
* Opens the edit connection dialog
* @param model the existing connection profile to edit on.
*/
public showEditConnectionDialog(model: interfaces.IConnectionProfile): Promise<void> {
if (!model) {
return Promise.reject();
}
let params = { connectionType: ConnectionType.default };

return this._connectionDialogService.showDialog(this, params, model).catch(dialogError => {
this._logService.warn('failed to open the connection dialog. error: ' + dialogError);
throw dialogError;
});
}

/**
* Load the password for the profile
* @param connectionProfile Connection Profile
Expand Down

0 comments on commit 9704a63

Please sign in to comment.