remove unused variables

This commit is contained in:
Felix Hartmann (PEA3-Fe-FI)
2021-09-23 15:46:13 +02:00
parent 8e17ffa978
commit a5dd048f07

View File

@@ -29,8 +29,6 @@ namespace PolyChat
private readonly FileManager fileManager;
// Props
private Dictionary<string, Connection> Connections = new Dictionary<string, Connection>();
private string OwnName = "";
private string OwnIP;
/// <summary>
/// Initializes Controller with UI access
@@ -40,7 +38,6 @@ namespace PolyChat
{
UIController = uiController;
fileManager = new FileManager(uiController);
OwnIP = getIP();
fileManager.loadChats();
Serve();