From 130f1ae81b7be8077c43fa53847cb99a67925919 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 14 Feb 2020 21:57:30 -0800 Subject: [PATCH] ProcessManager: remove unused modules --- PBot/ProcessManager.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/PBot/ProcessManager.pm b/PBot/ProcessManager.pm index 545e2f73..e9b43701 100644 --- a/PBot/ProcessManager.pm +++ b/PBot/ProcessManager.pm @@ -15,8 +15,6 @@ use feature 'unicode_strings'; use POSIX qw(WNOHANG); use JSON; -use IPC::Run qw/run timeout/; -use Encode; # automatically reap children processes in background $SIG{CHLD} = sub { while (waitpid(-1, WNOHANG) > 0) {} };