[Bps-public-commit] storage-box branch, master, updated. 94b982e225dbd22cd4d70351f80dabc2e296309b
Shawn Moore
shawn at bestpractical.com
Fri Sep 30 12:54:08 EDT 2016
The branch, master has been updated
via 94b982e225dbd22cd4d70351f80dabc2e296309b (commit)
from 181219b74395418fcc5bf2d975c97f7c9ecedaf8 (commit)
Summary of changes:
lib/Storage/Box/Logger.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 94b982e225dbd22cd4d70351f80dabc2e296309b
Author: Shawn M Moore <shawn at bestpractical.com>
Date: Fri Sep 30 16:54:03 2016 +0000
Syntax fixes
diff --git a/lib/Storage/Box/Logger.pm b/lib/Storage/Box/Logger.pm
index 1f0743c..ab9f8a9 100644
--- a/lib/Storage/Box/Logger.pm
+++ b/lib/Storage/Box/Logger.pm
@@ -43,7 +43,7 @@ dispatch all logging to the delegate.
=cut
use Exporter;
- at EXPORT = (logger);
+ at EXPORT = qw(logger);
our $debug;
our $delegate;
@@ -62,7 +62,7 @@ sub logger {
sub new {
my $class = shift;
- my $self = @_ ? ( @_ > 1 ? { @_ } : { %$_[0] } ) : {};
+ my $self = @_ ? ( @_ > 1 ? { @_ } : { %{ $_[0] } } ) : {};
bless $self, ref $class || $class;
}
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list