From 713897116388101fae40b1aed7f43d96ff057f4f Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 9 Oct 2019 12:48:53 +0200 Subject: [PATCH] TT#68300 Use parent instead of base The former is more lightweight and the current recommended pragma. Change-Id: I19bb73df214f82f65620fb38f1efa9820c1a9e4a --- lib/NGCP/API/Client.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/NGCP/API/Client.pm b/lib/NGCP/API/Client.pm index a4fc9b7..88c8d20 100644 --- a/lib/NGCP/API/Client.pm +++ b/lib/NGCP/API/Client.pm @@ -163,7 +163,8 @@ sub set_verbose { package NGCP::API::Client::Result; use warnings; use strict; -use base qw(HTTP::Response); +use parent qw(HTTP::Response); + use JSON qw(from_json); sub new {