Quick change to the access Modifiers for fields in Worker,Task and Assignmentmanager, refactored tests to use getWorkerMap

This commit is contained in:
2026-01-04 16:33:12 +01:00
parent f0da7b0f9a
commit 85446bc230
24 changed files with 75 additions and 73 deletions

View File

@@ -1,8 +1,8 @@
package hhn.temp.project;
public class Worker {
String name;
int workerId;
private String name;
private int workerId;
public Worker(String name, int workerId) {
this.name = name;
this.workerId = workerId;