Skip to content

Commit

Permalink
Remove @NotNull annotation in api
Browse files Browse the repository at this point in the history
  • Loading branch information
ole-ve committed Nov 28, 2024
1 parent 50b64ec commit 07fae72
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import java.util.Optional;
import java.util.Set;

import jakarta.validation.constraints.NotNull;

import org.springframework.context.annotation.Profile;
import org.springframework.stereotype.Controller;

Expand All @@ -33,7 +31,7 @@ public CompetencyProgressApi(CompetencyProgressService competencyProgressService
this.competencyRepository = competencyRepository;
}

public void updateProgressByLearningObjectForParticipantAsync(LearningObject learningObject, @NotNull Participant participant) {
public void updateProgressByLearningObjectForParticipantAsync(LearningObject learningObject, Participant participant) {
competencyProgressService.updateProgressByLearningObjectForParticipantAsync(learningObject, participant);
}

Expand Down

0 comments on commit 07fae72

Please sign in to comment.