Skip to content

Commit 0e6741c

Browse files
committed
Improve code quality
1 parent 6ed5308 commit 0e6741c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Flow.Launcher/Storage/TopMostRecord.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public class TopMostRecord
1212

1313
internal bool IsTopMost(Result result)
1414
{
15-
if (records.IsEmpty ||
16-
!records.TryGetValue(result.OriginQuery.RawQuery, out var value))
15+
if (records.IsEmpty || !records.TryGetValue(result.OriginQuery.RawQuery, out var value))
1716
{
1817
return false;
1918
}

0 commit comments

Comments
 (0)