From bb6522ed2fceca8143d5727eaa9f9cc5176ec909 Mon Sep 17 00:00:00 2001 From: Mihail Zonev <74965282+w1nston19@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:11:12 +0200 Subject: [PATCH] Update README.md (#124) Fix javadoc in an interface in Lab 04 assignment --- 04-collections-clean-code/lab/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04-collections-clean-code/lab/README.md b/04-collections-clean-code/lab/README.md index 6f238755..b518c3ed 100644 --- a/04-collections-clean-code/lab/README.md +++ b/04-collections-clean-code/lab/README.md @@ -170,7 +170,7 @@ public interface GymMember { * * @param day - DayOfWeek to train the exercise. * @param exercises - list of the trained Exercises - * @throws DayOffException if the Workout on this day is null or the exercises list is empty. + * @throws DayOffException if the Workout on this day is null * @throws IllegalArgumentException if day is null or exercises is null or empty */ void addExercises(DayOfWeek day, List exercises);