diff options
author | terry%mozilla.org <> | 2000-01-07 07:55:00 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-07 07:55:00 +0100 |
commit | c3ea2bd292f533e988ef6af346bafff2de581ff0 (patch) | |
tree | dd8ae7987f2bc526968f362f60c709933bc52f36 | |
parent | f8b945c9856ae93508172f8b024ae26d94667899 (diff) | |
download | bugzilla-c3ea2bd292f533e988ef6af346bafff2de581ff0.tar.gz bugzilla-c3ea2bd292f533e988ef6af346bafff2de581ff0.tar.xz |
Stop generating the %::keywordsbyid hashtable that nothing was using.
-rw-r--r-- | globals.pl | 2 |
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; |