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 27002c5 commit 43f7cecCopy full SHA for 43f7cec
Flow.Launcher.Infrastructure/TranslationMapping.cs
@@ -1,6 +1,5 @@
1
using System;
2
using System.Collections.Generic;
3
-using System.Linq;
4
5
namespace Flow.Launcher.Infrastructure
6
{
@@ -10,7 +9,7 @@ public class TranslationMapping
10
9
11
// Assuming 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>();
+ private readonly List<int> originalToTranslated = new();
14
15
public void AddNewIndex(int translatedIndex, int length)
16
0 commit comments