From dce90a22240f5d893ee1b7986cc2520fb12e0342 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 10 Aug 2020 10:59:46 +0200 Subject: [PATCH] Bug 23653: Remove uneeded cond test rel_file returns the path anyway Signed-off-by: Tomas Cohen Arazi --- Koha/REST/Plugin/PluginRoutes.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Koha/REST/Plugin/PluginRoutes.pm b/Koha/REST/Plugin/PluginRoutes.pm index 8cc9c47587..ec86c0f4d9 100644 --- a/Koha/REST/Plugin/PluginRoutes.pm +++ b/Koha/REST/Plugin/PluginRoutes.pm @@ -47,10 +47,7 @@ sub register { if ( C4::Context->config("enable_plugins") ) { - my $schema = $app->home->rel_file("api/swagger-v2-schema.json"); - if ($schema){ - $self->{'swagger-v2-schema'} = $schema; - } + $self->{'swagger-v2-schema'} = $app->home->rel_file("api/swagger-v2-schema.json"); # plugin needs to define a namespace @plugins = Koha::Plugins->new()->GetPlugins( -- 2.28.0