Skip to content

Commit a6ce350

Browse files
committed
fix formatting
1 parent 74f1b05 commit a6ce350

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Flow.Launcher.Infrastructure/StringMatcher.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ public MatchResult FuzzyMatch(string query, string stringToCompare, MatchOption
8585
// To maintain a list of indices which correspond to spaces in the string to compare
8686
// To populate the list only for the first query substring
8787
if (fullStringToCompareWithoutCase[compareStringIndex] == ' ' && currentQuerySubstringIndex == 0)
88-
{
8988
spaceIndices.Add(compareStringIndex);
90-
}
9189

9290
// Acronym check
9391
if (char.IsUpper(stringToCompare[compareStringIndex]) ||
@@ -310,4 +308,4 @@ public class MatchOption
310308
{
311309
public bool IgnoreCase { get; set; } = true;
312310
}
313-
}
311+
}

0 commit comments

Comments
 (0)