From 80d190f50dcf63e000f2993b68709af550c518e5 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Tue, 16 Jan 2018 15:46:16 +0100 Subject: [PATCH] Minor changes and whitespace. Refers to #2 --- ATXTray/Program.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ATXTray/Program.cs b/ATXTray/Program.cs index ba46a96..adc49d6 100644 --- a/ATXTray/Program.cs +++ b/ATXTray/Program.cs @@ -3,14 +3,13 @@ using System.Windows.Forms; namespace ATXTray { - static class Program + internal static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] - private static void Main() - { + private static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new AutoTxTray()); -- GitLab