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

@@ -59,7 +59,7 @@ export abstract class LanguageViewBase {
public browseButtonMaxLength = 20; public browseButtonMaxLength = 20;
public spaceBetweenComponentsLength = 10; public spaceBetweenComponentsLength = 10;
constructor(protected _apiWrapper: ApiWrapper, protected _root?: string, protected _parent?: LanguageViewBase, ) { constructor(protected _apiWrapper: ApiWrapper, protected _root?: string, protected _parent?: LanguageViewBase,) {
if (this._parent) { if (this._parent) {
if (!this._root) { if (!this._root) {
this._root = this._parent.root; this._root = this._parent.root;

View File

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

View File

@@ -21,7 +21,7 @@ export abstract class ComponentWithIconBase extends ComponentBase {
protected _iconPath: IUserFriendlyIcon; protected _iconPath: IUserFriendlyIcon;
constructor( constructor(
changeRef: ChangeDetectorRef, changeRef: ChangeDetectorRef,
el: ElementRef, ) { el: ElementRef,) {
super(changeRef, el); 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); let connectionManagementInfo = this._connectionStatusManager.findConnection(uri);
if (options.showDashboard) { if (options.showDashboard) {
this.showDashboardForConnectionManagementInfo(connectionManagementInfo.connectionProfile); this.showDashboardForConnectionManagementInfo(connectionManagementInfo.connectionProfile);