Remove some debug code.

This commit is contained in:
Colin Kuskie 2010-06-06 22:32:40 -07:00
parent d81a28b235
commit c5203cb737

View file

@ -125,9 +125,7 @@ sub getTypes {
}
my %fields = ();
foreach my $type (@types) {
my $name = WebGUI::Pluggable::instanciate('WebGUI::Form::'.ucfirst($type), 'getName', [$self->session]);
$self->session->log->warn("type: $type; name: $name");
$fields{$type} = $name;
$fields{$type} = WebGUI::Pluggable::instanciate('WebGUI::Form::'.ucfirst($type), 'getName', [$self->session]);
}
return \%fields;
}