add static modifier to some classes (#20)

This commit is contained in:
CommonLoon102 2020-02-12 16:19:15 +00:00 committed by GitHub
parent e86a291ab6
commit 506ca164fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ using Model;
namespace Supervisor namespace Supervisor
{ {
class Program static class Program
{ {
public static readonly State State = new State(); public static readonly State State = new State();

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Supervisor namespace Supervisor
{ {
class StatisticsManager static class StatisticsManager
{ {
public static void Start() public static void Start()
{ {