]> git.proxmox.com Git - librados2-perl.git/commitdiff
cleanup use statements and drop unused exporter
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 17 Nov 2022 13:16:27 +0000 (14:16 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 17 Nov 2022 13:16:51 +0000 (14:16 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/RADOS.pm

index 36b42ed4671be4b904b192f98fcaa0655881399b..032118d043cd1f731209bb2f5a869d355706e815 100644 (file)
@@ -1,11 +1,14 @@
 package PVE::RADOS;
 
 use 5.014002;
+
 use strict;
 use warnings;
+
 use Carp;
 use JSON;
 use Socket;
+
 use PVE::Tools;
 use PVE::INotify;
 use PVE::RPCEnvironment;
@@ -17,25 +20,6 @@ my $ceph_default_conf = '/etc/pve/ceph.conf';
 my $ceph_default_user = 'admin';
 
 
-our @ISA = qw(Exporter);
-
-# Items to export into callers namespace by default. Note: do not export
-# names by default without a very good reason. Use EXPORT_OK instead.
-# Do not simply export all your public functions/methods/constants.
-
-# This allows declaration      use PVE::RADOS ':all';
-# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
-# will save memory.
-our %EXPORT_TAGS = ( 'all' => [ qw(
-
-) ] );
-
-our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
-
-our @EXPORT = qw(
-
-);
-
 our $VERSION = '1.0';
 
 require XSLoader;