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,11 +1,11 @@
package hhn.temp.project;
public class Task {
String name;
String description;
int taskId;
int workerId;
TaskState state;
private String name;
private String description;
private int taskId;
private int workerId;
private TaskState state;
public Task(int taskId, int workerId, String name, String description) {
this.name = name;
this.description = description;