Removed empty constructors

This commit is contained in:
2025-08-23 14:20:37 -05:00
parent d44e7d4e51
commit 3c3a5d2f50
6 changed files with 0 additions and 21 deletions

View File

@@ -15,9 +15,6 @@ export class InfoBarService {
private ftypeSubject: ReplaySubject<string> = new ReplaySubject<string>(1);
constructor() {}
public setData(data: ServiceMessage): void {
this.dataSubject.next(data);
}

View File

@@ -25,10 +25,6 @@ export class LspManagerService {
languageProviders: {} = {};
constructor() {
}
public loadLspConfigData(): Promise<string | void> {
return this.getLspConfigData().then((lspConfigData: string) => {
this.lspConfigDataStr = lspConfigData;

View File

@@ -12,10 +12,6 @@ export class MarkdownPreviewService {
private messageSubject: ReplaySubject<ServiceMessage> = new ReplaySubject<ServiceMessage>(1);
constructor() {
}
public sendMessage(data: ServiceMessage): void {
this.messageSubject.next(data);
}

View File

@@ -11,10 +11,6 @@ export class FilesModalService {
private addFileSubject: ReplaySubject<string> = new ReplaySubject<string>(1);
constructor() {
}
public showFilesModal(): void {
this.showFilesModalSubject.next(null);
}

View File

@@ -12,10 +12,6 @@ export class SearchReplaceService {
private messageSubject: ReplaySubject<ServiceMessage> = new ReplaySubject<ServiceMessage>(1);
constructor() {
}
public sendMessage(data: ServiceMessage): void {
this.messageSubject.next(data);
}

View File

@@ -18,8 +18,6 @@ export class TabsService {
tabs: any[] = [];
newIndex: number = -1;
constructor() {}
public push(tabData: {}): void {
this.tabs.push(tabData);