From 00080b5c3b3a4faae8c6965166d0d1fb76a6797d Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Mon, 28 Aug 2023 01:22:25 +0200 Subject: [PATCH] remove unhandled import arguments Previous versions of perl allow a use or import call even if the import method doesn't exist. Future versions are intending to throw errors for calls to an undefined import method that includes arguments. Remove the arguments to use lines when the import method does not exist. --- lib/Game/Tibia/Packet.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Game/Tibia/Packet.pm b/lib/Game/Tibia/Packet.pm index 87b2d72..bd6c2e6 100644 --- a/lib/Game/Tibia/Packet.pm +++ b/lib/Game/Tibia/Packet.pm @@ -6,7 +6,7 @@ package Game::Tibia::Packet; # ABSTRACT: Minimal session layer support for the MMORPG Tibia # VERSION -use Digest::Adler32 qw(adler32); +use Digest::Adler32; use Crypt::XTEA 0.0108; use Crypt::ECB 2.0.0; use Carp;