Remove debugging code.

This commit is contained in:
Ramon Novoa 2016-12-22 11:35:21 +01:00
parent 907ba03b1a
commit 93d7cc5253
1 changed files with 1 additions and 5 deletions

View File

@ -575,11 +575,7 @@ sub process_xml_data ($$$$$) {
# No parent module defined
my $parent_module_name = get_tag_value ($module_data, 'module_parent', undef);
if (! defined ($parent_module_name)) {
use Data::Dumper;
print Dumper($module_data);
next;
}
next if (! defined ($parent_module_name));
link_modules($pa_config, $dbh, $agent_id, $module_name, $parent_module_name);
}