Commit c3ea2bd2 authored by terry%mozilla.org's avatar terry%mozilla.org

Stop generating the %::keywordsbyid hashtable that nothing was using.

parent f8b945c9
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment