summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-01-07 07:55:00 +0100
committerterry%mozilla.org <>2000-01-07 07:55:00 +0100
commitc3ea2bd292f533e988ef6af346bafff2de581ff0 (patch)
treedd8ae7987f2bc526968f362f60c709933bc52f36 /globals.pl
parentf8b945c9856ae93508172f8b024ae26d94667899 (diff)
downloadbugzilla-c3ea2bd292f533e988ef6af346bafff2de581ff0.tar.gz
bugzilla-c3ea2bd292f533e988ef6af346bafff2de581ff0.tar.xz
Stop generating the %::keywordsbyid hashtable that nothing was using.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/globals.pl b/globals.pl
index 63998f859..136fb8b0e 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;