Skip to content

Commit

Permalink
Update libs/stringtable/src/rapify.rs
Browse files Browse the repository at this point in the history
Co-authored-by: BrettMayson <[email protected]>
  • Loading branch information
PabstMirror and BrettMayson authored Dec 9, 2024
1 parent 94bef18 commit fe06fb8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions libs/stringtable/src/rapify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,7 @@ fn rapify(project: &Project) -> Option<XmlbLayout> {

// Restructure translations: flat for each language
let mut all_keys: Vec<String> = Vec::new();
let mut all_translations: Vec<Vec<String>> = Vec::new();

for _language in ALL_LANGUAGES {
all_translations.push(Vec::new());
}
let mut all_translations: Vec<Vec<String>> = vec![Vec::new(); ALL_LANGUAGES.len()];



Expand Down

0 comments on commit fe06fb8

Please sign in to comment.