Skip to content

Commit 43f7cec

Browse files
committed
Improve code quality
1 parent 27002c5 commit 43f7cec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Flow.Launcher.Infrastructure/TranslationMapping.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
43

54
namespace Flow.Launcher.Infrastructure
65
{
@@ -10,7 +9,7 @@ public class TranslationMapping
109

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

1514
public void AddNewIndex(int translatedIndex, int length)
1615
{

0 commit comments

Comments
 (0)