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

@@ -11,7 +11,7 @@ public class DataSerializer {
public static void serialize(Supervisor manager) {
try (ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("manager.ser"))) {
oos.writeObject(manager);
System.out.println("Manager object serialized successfully.");
System.out.println("Supervisor object serialized successfully.");
} catch (IOException e) {
e.printStackTrace();
}