remove some quotes

This commit is contained in:
Isaac Connor 2017-05-26 13:27:06 -04:00
parent 34f4abb549
commit 2a2d667afb
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ our @ISA = qw(Exporter ZoneMinder::Base);
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory. # will save memory.
our %EXPORT_TAGS = ( our %EXPORT_TAGS = (
'data' => [ qw( data => [ qw(
%types %types
@options @options
%options_hash %options_hash
@ -49,7 +49,7 @@ our %EXPORT_TAGS = (
); );
push( @{$EXPORT_TAGS{all}}, @{$EXPORT_TAGS{$_}} ) foreach keys %EXPORT_TAGS; push( @{$EXPORT_TAGS{all}}, @{$EXPORT_TAGS{$_}} ) foreach keys %EXPORT_TAGS;
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'data'} } ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{data} } );
our @EXPORT = qw(); our @EXPORT = qw();