We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9e89ad commit d537ce2Copy full SHA for d537ce2
Flow.Launcher.Infrastructure/TranslationMapping.cs
@@ -8,9 +8,9 @@ public class TranslationMapping
8
{
9
private bool constructed;
10
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 = [];
+ // Asssuming one original item maps to multi translated items
+ // list[i] is the last translated index + 1 of original index i
+ private readonly List<int> originalToTranslated = new List<int>();
14
15
public void AddNewIndex(int translatedIndex, int length)
16
0 commit comments