Skip to content

Commit c0d559f

Browse files
committed
tidy
1 parent ad92f0c commit c0d559f

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Changes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Revision history for HTML-FormBuilder
22

33
{{$NEXT}}
4+
- perltidy/critic
45

56
0.02 2015-01-09 17:28:52 CST
67
- no code changes

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Chylli L<chylli@binary.com>"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Dist::Zilla version 5.029, Dist::Milla version v1.0.9, CPAN::Meta::Converter version 2.142690",
7+
"generated_by" : "Dist::Zilla version 5.031, Dist::Milla version v1.0.9, CPAN::Meta::Converter version 2.142690",
88
"license" : [
99
"apache_2_0"
1010
],
@@ -68,7 +68,7 @@
6868
"web" : "https://github.com/binary-com/perl-HTML-FormBuilder"
6969
}
7070
},
71-
"version" : "0.02",
71+
"version" : "0.03",
7272
"x_contributors" : [
7373
"Chylli <chylli.email@gmail.com>",
7474
"Fayland Lam <fayland@gmail.com>",

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.029.
2+
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.031.
33
use strict;
44
use warnings;
55

@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
3535
"Test::FailWarnings" => 0,
3636
"Test::More" => "0.96"
3737
},
38-
"VERSION" => "0.02",
38+
"VERSION" => "0.03",
3939
"test" => {
4040
"TESTS" => "t/*.t t/formbuilder/*.t"
4141
}

lib/HTML/FormBuilder.pm

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ sub add_fieldset {
9292
if (ref $_args ne 'HASH');
9393

9494
my $fieldset = HTML::FormBuilder::FieldSet->new(
95-
data => $_args,
96-
classes => $self->classes,
97-
localize => $self->localize);
95+
data => $_args,
96+
classes => $self->classes,
97+
localize => $self->localize
98+
);
9899

99100
push @{$self->{fieldsets}}, $fieldset;
100101

0 commit comments

Comments
 (0)