From 31ffe86f04de781335cd3e11c22067375fdcb8c0 Mon Sep 17 00:00:00 2001 From: "Felix Hartmann (PEA3-Fe-FI)" Date: Thu, 23 Sep 2021 15:46:13 +0200 Subject: [PATCH] remove unused variables --- PolyChat/Controller.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/PolyChat/Controller.cs b/PolyChat/Controller.cs index 30048c2..096b832 100644 --- a/PolyChat/Controller.cs +++ b/PolyChat/Controller.cs @@ -29,8 +29,6 @@ namespace PolyChat private readonly FileManager fileManager; // Props private Dictionary Connections = new Dictionary(); - private string OwnName = ""; - private string OwnIP; /// /// Initializes Controller with UI access @@ -40,7 +38,6 @@ namespace PolyChat { UIController = uiController; fileManager = new FileManager(uiController); - OwnIP = getIP(); fileManager.loadChats(); Serve();