aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Config/DependencyGraph.pm')
-rw-r--r--Bugzilla/Config/DependencyGraph.pm22
1 files changed, 9 insertions, 13 deletions
diff --git a/Bugzilla/Config/DependencyGraph.pm b/Bugzilla/Config/DependencyGraph.pm
index c815822f3..27bc9938d 100644
--- a/Bugzilla/Config/DependencyGraph.pm
+++ b/Bugzilla/Config/DependencyGraph.pm
@@ -16,21 +16,17 @@ use Bugzilla::Config::Common;
our $sortkey = 800;
sub get_param_list {
- my $class = shift;
+ my $class = shift;
my @param_list = (
- {
- name => 'webdotbase',
- type => 't',
- default => '',
- checker => \&check_webdotbase
- },
+ {
+ name => 'webdotbase',
+ type => 't',
+ default => '',
+ checker => \&check_webdotbase
+ },
- {
- name => 'font_file',
- type => 't',
- default => '',
- checker => \&check_font_file
- });
+ {name => 'font_file', type => 't', default => '', checker => \&check_font_file}
+ );
return @param_list;
}