Implemented all methods marked with WIP

This commit is contained in:
2023-09-26 22:25:21 +03:00
parent 120669d859
commit 5253bc2947
23 changed files with 908 additions and 648 deletions

View File

@@ -14,7 +14,7 @@ public class DataDeserializer {
if (serializedFile.exists()) {
try (ObjectInputStream ois = new ObjectInputStream(new FileInputStream(serializedFile))) {
manager = (Supervisor) ois.readObject();
System.out.println("Manager object deserialized successfully.");
System.out.println("Supervisor object deserialized successfully.");
} catch (IOException | ClassNotFoundException e) {
e.printStackTrace();
}