From cf07428f42df52dc66f6ab2fd42bc2ea1735d068 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Tue, 24 Jul 2018 22:55:56 +0200 Subject: [PATCH] Add modifiers suggested by ReSharper --- ATxDiagnostics/ATxDiagnostics.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ATxDiagnostics/ATxDiagnostics.cs b/ATxDiagnostics/ATxDiagnostics.cs index f3b80fb..8646784 100644 --- a/ATxDiagnostics/ATxDiagnostics.cs +++ b/ATxDiagnostics/ATxDiagnostics.cs @@ -10,11 +10,11 @@ using NLog.Targets; namespace ATxDiagnostics { - class ATxDiagnostics + internal class ATxDiagnostics { private static readonly Logger Log = LogManager.GetCurrentClassLogger(); - static void Main(string[] args) { + private static void Main(string[] args) { var loglevel = LogLevel.Debug; if (args.Length > 0 && args[0] == "trace") { loglevel = LogLevel.Trace; -- GitLab