Bug 15006 Correct indentation of EXPORTs in Sip.pm
Removed tabs and used spaces consistently Used 'use base' to remove unnecessary BEGIN sub and explicit setting of ISA at application level Signed-off-by: Srdjan <srdjan@catalyst.net.nz> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
eb8666357c
commit
4ad4ab6396
1 changed files with 10 additions and 14 deletions
|
@ -16,22 +16,18 @@ use IO::Handle;
|
|||
use C4::SIP::Sip::Constants qw(SIP_DATETIME FID_SCREEN_MSG);
|
||||
use C4::SIP::Sip::Checksum qw(checksum);
|
||||
|
||||
use vars qw(@ISA @EXPORT_OK %EXPORT_TAGS);
|
||||
use base qw(Exporter);
|
||||
|
||||
BEGIN {
|
||||
@ISA = qw(Exporter);
|
||||
|
||||
@EXPORT_OK = qw(y_or_n timestamp add_field maybe_add add_count
|
||||
our @EXPORT_OK = qw(y_or_n timestamp add_field maybe_add add_count
|
||||
denied sipbool boolspace write_msg
|
||||
$error_detection $protocol_version $field_delimiter
|
||||
$last_response);
|
||||
|
||||
%EXPORT_TAGS = (
|
||||
our %EXPORT_TAGS = (
|
||||
all => [qw(y_or_n timestamp add_field maybe_add
|
||||
add_count denied sipbool boolspace write_msg
|
||||
$error_detection $protocol_version
|
||||
$field_delimiter $last_response)]);
|
||||
}
|
||||
|
||||
our $error_detection = 0;
|
||||
our $protocol_version = 1;
|
||||
|
|
Loading…
Reference in a new issue