formatting

This commit is contained in:
弘韬 张 2021-02-14 18:15:46 +08:00
parent 9fb44e6002
commit 71ca3bbf38

View file

@ -111,8 +111,6 @@ namespace Flow.Launcher
public List<PluginPair> GetAllPlugins() => PluginManager.AllPlugins.ToList();
public event FlowLauncherGlobalKeyboardEventHandler GlobalKeyboardEvent;
public MatchResult FuzzySearch(string query, string stringToCompare) => StringMatcher.FuzzySearch(query, stringToCompare);
public Task<string> HttpGetStringAsync(string url, CancellationToken token = default) => Http.GetAsync(url);
@ -125,7 +123,6 @@ namespace Flow.Launcher
public void RemoveActionKeyword(string pluginId, string oldActionKeyword) => PluginManager.RemoveActionKeyword(pluginId, oldActionKeyword);
public void LogDebug(string className, string message, [CallerMemberName] string methodName = "") => Log.Debug(className, message, methodName);
public void LogInfo(string className, string message, [CallerMemberName] string methodName = "") => Log.Info(className, message, methodName);
@ -138,6 +135,7 @@ namespace Flow.Launcher
public void SaveJsonStorage<T>(PluginMetadata metadata, T setting) where T : new() => new PluginJsonStorage<T>(setting).Save();
public event FlowLauncherGlobalKeyboardEventHandler GlobalKeyboardEvent;
#endregion