From 4da91564d3c4c4613d1022ed40e4b1e84c5fe157 Mon Sep 17 00:00:00 2001 From: Hans Ott Date: Fri, 31 Jan 2025 14:56:20 +0100 Subject: [PATCH] Remove unused methods --- library/agent/Agent.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/library/agent/Agent.ts b/library/agent/Agent.ts index 99ec82aae..5698419d0 100644 --- a/library/agent/Agent.ts +++ b/library/agent/Agent.ts @@ -491,14 +491,6 @@ export class Agent { } } - onFailedToWrapPackage(module: string) { - this.logger.log(`Failed to wrap package ${module}`); - } - - onFailedToWrapFile(module: string, filename: string) { - this.logger.log(`Failed to wrap file ${filename} in module ${module}`); - } - onConnectHostname(hostname: string, port: number) { this.hostnames.add(hostname, port); }