[feature] remove useless imports

This commit is contained in:
MathieuG-P
2023-07-16 04:18:42 +02:00
parent 0acb70cf7e
commit c010ca8fe6
2 changed files with 2 additions and 6 deletions
-1
View File
@@ -5,7 +5,6 @@ import { BS_EXECUTABLE, BS_APP_ID, STEAMVR_APP_ID, IMAGE_CACHE_PATH } from "../c
import { ChildProcessWithoutNullStreams, SpawnOptionsWithoutStdio, spawn } from "child_process";
import { SteamService } from "./steam.service";
import { BSLocalVersionService } from "./bs-local-version.service";
import { OculusService } from "./oculus.service";
import { pathExist } from "../helpers/fs.helpers";
import { rename } from "fs/promises";
import log from "electron-log";
+2 -5
View File
@@ -1,10 +1,9 @@
import { LaunchOption, LaunchResult, BSLaunchEvent, BSLaunchWarning, BSLaunchEventData, BSLaunchErrorData, BSLaunchError } from "shared/models/bs-launch";
import { LaunchOption, BSLaunchEvent, BSLaunchWarning, BSLaunchEventData, BSLaunchErrorData, BSLaunchError } from "shared/models/bs-launch";
import { BSVersion } from 'shared/bs-version.interface';
import { IpcService } from "./ipc.service";
import { NotificationService } from "./notification.service";
import { BsDownloaderService } from "./bs-downloader.service";
import { BehaviorSubject, Observable, filter, of } from "rxjs";
import { NotificationResult } from "shared/models/notification/notification.model";
import { BehaviorSubject, Observable, filter } from "rxjs";
import { ConfigurationService } from "./configuration.service";
import { ThemeService } from "./theme.service";
@@ -13,7 +12,6 @@ export class BSLauncherService {
private readonly ipcService: IpcService;
private readonly notificationService: NotificationService;
private readonly bsDownloaderService: BsDownloaderService;
private readonly config: ConfigurationService;
private readonly theme: ThemeService;
@@ -27,7 +25,6 @@ export class BSLauncherService {
private constructor() {
this.ipcService = IpcService.getInstance();
this.notificationService = NotificationService.getInstance();
this.bsDownloaderService = BsDownloaderService.getInstance();
this.config = ConfigurationService.getInstance();
this.theme = ThemeService.getInstance();
}