Skip to content

Commit d537ce2

Browse files
Fix init issue
1 parent d9e89ad commit d537ce2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Flow.Launcher.Infrastructure/TranslationMapping.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ public class TranslationMapping
88
{
99
private bool constructed;
1010

11-
// Asssuming one original item maps to multi translated items
12-
// list[i] is the last translated index + 1 of original index i
13-
private readonly List<int> originalToTranslated = [];
11+
// Asssuming one original item maps to multi translated items
12+
// list[i] is the last translated index + 1 of original index i
13+
private readonly List<int> originalToTranslated = new List<int>();
1414

1515
public void AddNewIndex(int translatedIndex, int length)
1616
{

0 commit comments

Comments
 (0)