code cleanup

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2020-10-09 18:06:07 +02:00
parent d1f4700063
commit d5c80a5bd5
2 changed files with 7 additions and 7 deletions

View File

@ -3,18 +3,18 @@ package PVE::API2::Disks;
use strict;
use warnings;
use PVE::SafeSyslog;
use PVE::Diskmanage;
use HTTP::Status qw(:constants);
use PVE::JSONSchema qw(get_standard_option);
use PVE::Diskmanage;
use PVE::JSONSchema qw(get_standard_option);
use PVE::SafeSyslog;
use PVE::API2::Disks::Directory;
use PVE::API2::Disks::LVM;
use PVE::API2::Disks::LVMThin;
use PVE::API2::Disks::Directory;
use PVE::API2::Disks::ZFS;
use PVE::RESTHandler;
use base qw(PVE::RESTHandler);
__PACKAGE__->register_method ({
@ -69,7 +69,7 @@ __PACKAGE__->register_method ({
{ name => 'lvmthin' },
{ name => 'directory' },
{ name => 'zfs' },
];
];
return $result;
}});