Remove useless semicolon

This commit is contained in:
Jack251970 2025-05-22 22:17:10 +08:00
parent 0edd626cfb
commit 91f7a4fd55

View file

@ -256,7 +256,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
FileName = FullPath, WorkingDirectory = ParentDirectory, UseShellExecute = true
};
_ = Task.Run(() => Main.StartProcess(ShellCommand.RunAsDifferentUser, info)).ConfigureAwait(false);;
_ = Task.Run(() => Main.StartProcess(ShellCommand.RunAsDifferentUser, info)).ConfigureAwait(false);
return true;
},