mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
remove warning suppression and fix a typo
This commit is contained in:
parent
92c2281def
commit
fdc8ae2842
1 changed files with 1 additions and 3 deletions
|
|
@ -16,9 +16,7 @@ namespace Flow.Launcher.Plugin
|
||||||
{
|
{
|
||||||
Search = search;
|
Search = search;
|
||||||
RawQuery = rawQuery;
|
RawQuery = rawQuery;
|
||||||
#pragma warning disable 618 Legacy Support
|
|
||||||
Terms = terms;
|
Terms = terms;
|
||||||
#pragma warning restore 618
|
|
||||||
SearchTerms = searchTerms;
|
SearchTerms = searchTerms;
|
||||||
ActionKeyword = actionKeyword;
|
ActionKeyword = actionKeyword;
|
||||||
}
|
}
|
||||||
|
|
@ -81,7 +79,7 @@ namespace Flow.Launcher.Plugin
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// strings from second search (including) to last search
|
/// strings from second search (including) to last search
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string SecondToEndSearch => SearchTerms.Length > 1? _secondToEndSearch ??= string.Join(' ', SearchTerms[1..]]) : "";
|
public string SecondToEndSearch => SearchTerms.Length > 1 ? (_secondToEndSearch ??= string.Join(' ', SearchTerms[1..])) : "";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Return second search split by space if it has
|
/// Return second search split by space if it has
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue