From 44d0fd39d72b1baaab9c5aa2b623d08f6113fa55 Mon Sep 17 00:00:00 2001 From: Kevin Kandlbinder Date: Fri, 21 Jun 2024 13:27:58 +0200 Subject: [PATCH] Test --- BusinessLogic/Tournament.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BusinessLogic/Tournament.cs b/BusinessLogic/Tournament.cs index c59e068..1600b22 100644 --- a/BusinessLogic/Tournament.cs +++ b/BusinessLogic/Tournament.cs @@ -12,7 +12,8 @@ namespace WebEMSim public Tournament() { - _id = System.Guid.NewGuid().ToString(); + _id = System.Guid.NewGuid() + .ToString(); _ranks = new Dictionary(); _matches = new Dictionary(); _groups = [];