LibUnicode: Remove unused field from UnicodeData generator

This commit is contained in:
Timothy Flynn 2021-11-22 08:17:13 -05:00 committed by Andreas Kling
parent d7568b28b4
commit f2f4980f15
Notes: sideshowbarker 2024-07-17 23:19:14 +09:00

View File

@ -95,7 +95,6 @@ struct UnicodeData {
Vector<String> conditions;
Vector<CodePointData> code_point_data;
Vector<CodePointRange> code_point_ranges;
PropList general_categories;
Vector<Alias> general_category_aliases;
@ -454,7 +453,6 @@ static void parse_unicode_data(Core::File& file, UnicodeData& unicode_data)
VERIFY(code_point_range_start.has_value());
CodePointRange code_point_range { *code_point_range_start, data.code_point };
unicode_data.code_point_ranges.append(code_point_range);
assigned_code_points.append(code_point_range);
data.name = data.name.substring(1, data.name.length() - 8);