summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJason <jason@socialflow.com>2013-08-27 14:25:06 +0000
committerJason <jason@socialflow.com>2013-08-27 14:25:06 +0000
commitc5ca159b22215c84a5b7f7ec9814104aa662b072 (patch)
tree55a7086e38701e849bcd2744419b0258e5eb7cb0 /lib
parent7e6ee683379071b6cea2bda7dce8cb7828baa5b4 (diff)
downloadspreadsheet-template-c5ca159b22215c84a5b7f7ec9814104aa662b072.tar.gz
spreadsheet-template-c5ca159b22215c84a5b7f7ec9814104aa662b072.zip
removed cpan stuff, fix two typos
Diffstat (limited to 'lib')
-rw-r--r--lib/Spreadsheet/Template/Writer/Excel.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/Spreadsheet/Template/Writer/Excel.pm b/lib/Spreadsheet/Template/Writer/Excel.pm
index f77e898..da54cea 100644
--- a/lib/Spreadsheet/Template/Writer/Excel.pm
+++ b/lib/Spreadsheet/Template/Writer/Excel.pm
@@ -1,13 +1,6 @@
package Spreadsheet::Template::Writer::Excel;
-BEGIN {
- $Spreadsheet::Template::Writer::Excel::AUTHORITY = 'cpan:DOY';
-}
-{
- $Spreadsheet::Template::Writer::Excel::VERSION = '0.01';
-}
use Moose::Role;
-use Data::Dumper;
use Class::Load 'load_class';
use List::Util 'first';
@@ -191,7 +184,7 @@ sub _write_cell {
}
my $format;
- if ($data->{format}) {
+ if (exists $data->{format}) {
my %border = (
thin => 1,
);