From 722a9a9d1eff71759b57b917c9ccb08d283cfe9f Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Fri, 25 Apr 2008 11:17:02 -0500 Subject: [PATCH] bug 2058: removing spurious warnings from C4::Items::AddItem just remove a couple unnecessary warn statements. no documentation or functionality changes. Signed-off-by: Joshua Ferraro --- C4/Items.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/C4/Items.pm b/C4/Items.pm index 1721eb89f6..825667f8a6 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -229,8 +229,6 @@ sub AddItem { # create MARC tag representing item and add to bib my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields); - warn "HERE : ".$item->{'biblionumber'}; - warn "HERE 2 : ".$new_item_marc->as_formatted; _add_item_field_to_biblio($new_item_marc, $item->{'biblionumber'}, $frameworkcode ); logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog"); -- 2.39.5