From 7e9dc186761d33a29faf9ea160822b096dbe7f5a Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Sat, 3 Jan 2026 20:34:51 +0800 Subject: [PATCH] Remove unnecessary constructor Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs index 148072931..39e4119bf 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchResult.cs @@ -4,10 +4,6 @@ namespace Flow.Launcher.Plugin.Explorer.Search { public record struct SearchResult { - public SearchResult() - { - } - public string FullPath { get; init; } public ResultType Type { get; init; } public int Score { get; init; }