diff --git a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs index e74811301..ffba6ce61 100644 --- a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs +++ b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs @@ -94,9 +94,6 @@ namespace Flow.Launcher.Core.Plugin { if (output == Stream.Null) return null; - var temp = System.Text.Encoding.UTF8.GetString(((MemoryStream)output).ToArray()); - System.Diagnostics.Debug.WriteLine(temp); - var queryResponseModel = await JsonSerializer.DeserializeAsync(output, options); diff --git a/Flow.Launcher/Helper/SingleInstance.cs b/Flow.Launcher/Helper/SingleInstance.cs index 606e02cc3..d684596be 100644 --- a/Flow.Launcher/Helper/SingleInstance.cs +++ b/Flow.Launcher/Helper/SingleInstance.cs @@ -385,28 +385,5 @@ namespace Flow.Launcher.Helper } #endregion - - #region Private Classes - - /// - /// Remoting service class which is exposed by the server i.e the first instance and called by the second instance - /// to pass on the command line arguments to the first instance and cause it to activate itself. - /// - private class IPCRemoteService : MarshalByRefObject - { - - /// - /// Remoting Object's ease expires after every 5 minutes by default. We need to override the InitializeLifetimeService class - /// to ensure that lease never expires. - /// - /// Always null. - [Obsolete] // overrides an obsolete method, so also needs to be obsolete - public override object InitializeLifetimeService() - { - return null; - } - } - - #endregion } } diff --git a/Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs b/Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs index 5e43d4d78..9e2a9a0f3 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs @@ -427,10 +427,10 @@ namespace Flow.Launcher.Plugin.Program.Programs manifestApp.GetAppUserModelId(out string tmpUserModelId); manifestApp.GetAppUserModelId(out string tmpUniqueIdentifier); - _ = manifestApp.GetStringValue("DisplayName", out string tmpDisplayName); - _ = manifestApp.GetStringValue("Description", out string tmpDescription); - _ = manifestApp.GetStringValue("BackgroundColor", out string tmpBackgroundColor); - _ = manifestApp.GetStringValue("EntryPoint", out string tmpEntryPoint); + manifestApp.GetStringValue("DisplayName", out string tmpDisplayName); + manifestApp.GetStringValue("Description", out string tmpDescription); + manifestApp.GetStringValue("BackgroundColor", out string tmpBackgroundColor); + manifestApp.GetStringValue("EntryPoint", out string tmpEntryPoint); UserModelId = tmpUserModelId; UniqueIdentifier = tmpUniqueIdentifier;