Skip to content

Commit

Permalink
chore: fix lint (#34881)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert authored Jan 4, 2025
1 parent 63856f5 commit aad8fd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
8 changes: 2 additions & 6 deletions packages/apps-engine/src/server/ProxiedApp.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { AppManager } from './AppManager';
import { AppStatus } from '../definition/AppStatus';
import { AppsEngineException } from '../definition/exceptions';
import type { IAppAuthorInfo, IAppInfo } from '../definition/metadata';
import { AppMethod } from '../definition/metadata';
import type { AppManager } from './AppManager';
import { InvalidInstallationError } from './errors/InvalidInstallationError';
import { AppConsole } from './logging';
import { AppLicenseValidationResult } from './marketplace/license';
Expand All @@ -15,11 +15,7 @@ export class ProxiedApp {

private latestLicenseValidationResult: AppLicenseValidationResult;

constructor(
private readonly manager: AppManager,
private storageItem: IAppStorageItem,
private readonly appRuntime: DenoRuntimeSubprocessController,
) {
constructor(private readonly manager: AppManager, private storageItem: IAppStorageItem, private readonly appRuntime: DenoRuntimeSubprocessController) {
this.previousStatus = storageItem.status;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,7 @@ export class DenoRuntimeSubprocessController extends EventEmitter {
private readonly livenessManager: LivenessManager;

// We need to keep the appSource around in case the Deno process needs to be restarted
constructor(
manager: AppManager,
private readonly appPackage: IParseAppPackageResult,
private readonly storageItem: IAppStorageItem,
) {
constructor(manager: AppManager, private readonly appPackage: IParseAppPackageResult, private readonly storageItem: IAppStorageItem) {
super();

this.debug = baseDebug.extend(appPackage.info.id);
Expand Down

0 comments on commit aad8fd9

Please sign in to comment.