mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
LibUnicode: Remove unused field from UnicodeData generator
This commit is contained in:
parent
d7568b28b4
commit
f2f4980f15
1 changed files with 0 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue