core: Apply declarations styles (#7166)

This commit is contained in:
Cory
2020-02-10 16:16:19 -06:00
committed by GitHub
parent e13cee2e95
commit 348dddfbee
149 changed files with 1039 additions and 1067 deletions

View File

@@ -6,13 +6,13 @@ using CommandLine;
namespace Jackett.Tray
{
static class Program
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
private static void Main(string[] args)
{
var JacketTrayProcess = Process.GetCurrentProcess();
var runningProcesses = Process.GetProcesses();
@@ -25,7 +25,7 @@ namespace Jackett.Tray
}
else
{
string newVersion = "";
var newVersion = "";
var commandLineParser = new Parser(settings => settings.CaseSensitive = false);
try