3227 Formatting

This commit is contained in:
Andreas Svanberg 2023-11-02 14:38:05 +01:00
parent c91817c55a
commit cce458f98a

@ -37,9 +37,8 @@ class SyncReviewerWithDaisy {
try {
Set<ProjectParticipant> contributors = daisyAPI.getContributors(project.getIdentifier());
for (ProjectParticipant contributor : contributors) {
if (Objects.equals(
contributor.getPerson().getId(),
reviewer.getIdentifier()) && Objects.equals(Role.REVIEWER, contributor.getRole()))
if (Objects.equals(contributor.getPerson().getId(), reviewer.getIdentifier())
&& Objects.equals(Role.REVIEWER, contributor.getRole()))
{
return;
}