#10 toString korrigiert
All checks were successful
Quality Check / Linting Check (push) Successful in 15s
Quality Check / Linting Check (pull_request) Successful in 21s
Quality Check / Javadoc Check (push) Successful in 36s
Quality Check / Javadoc Check (pull_request) Successful in 34s

This commit is contained in:
Dorian Nemec 2024-05-16 13:17:08 +02:00
parent 505d9e3f5c
commit 814f0a367b

View file

@ -139,7 +139,7 @@ public class Nurse extends Person {
.add("FirstName: " + this.getFirstName())
.add("SurName: " + this.getSurName())
.add("PhoneNumber: " + this.getPhoneNumber())
.add("IsLocked: ") + this.isLocked()
.add("IsLocked: " + this.isLocked())
.toString();
}