fix hygiene

This commit is contained in:
Anthony Dresser
2020-03-10 22:02:15 -07:00
parent 4c3e48773d
commit 324451ea22
4 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ export default class CheckBoxComponent extends ComponentBase implements ICompone
constructor(
@Inject(forwardRef(() => ChangeDetectorRef)) changeRef: ChangeDetectorRef,
@Inject(IWorkbenchThemeService) private themeService: IWorkbenchThemeService,
@Inject(forwardRef(() => ElementRef)) el: ElementRef, ) {
@Inject(forwardRef(() => ElementRef)) el: ElementRef,) {
super(changeRef, el);
}

View File

@@ -21,7 +21,7 @@ export abstract class ComponentWithIconBase extends ComponentBase {
protected _iconPath: IUserFriendlyIcon;
constructor(
changeRef: ChangeDetectorRef,
el: ElementRef, ) {
el: ElementRef,) {
super(changeRef, el);
}

View File

@@ -527,7 +527,7 @@ export class ConnectionManagementService extends Disposable implements IConnecti
});
}
private doActionsAfterConnectionComplete(uri: string, options: IConnectionCompletionOptions, ) {
private doActionsAfterConnectionComplete(uri: string, options: IConnectionCompletionOptions,) {
let connectionManagementInfo = this._connectionStatusManager.findConnection(uri);
if (options.showDashboard) {
this.showDashboardForConnectionManagementInfo(connectionManagementInfo.connectionProfile);