From: terry%mozilla.org <> Date: Fri, 7 Jan 2000 06:55:00 +0000 (+0000) Subject: Stop generating the %::keywordsbyid hashtable that nothing was using. X-Git-Tag: bugzilla-2.12~487 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3ea2bd292f533e988ef6af346bafff2de581ff0;p=thirdparty%2Fbugzilla.git Stop generating the %::keywordsbyid hashtable that nothing was using. --- diff --git a/globals.pl b/globals.pl index 63998f8591..136fb8b0e1 100644 --- a/globals.pl +++ b/globals.pl @@ -340,13 +340,11 @@ sub GenerateVersionTable { SendSQL("SELECT id, name FROM keyworddefs ORDER BY name"); while (MoreSQLData()) { my ($id, $name) = FetchSQLData(); - $::keywordsbyid{$id} = $name; $::keywordsbyname{$name} = $id; push(@::legal_keywords, $name); } print FID GenerateCode('@::legal_keywords'); print FID GenerateCode('%::keywordsbyname'); - print FID GenerateCode('%::keywordsbyid'); print FID "1;\n"; close FID;