Skip to content

Commit

Permalink
Revert "fix: backend logic for isEerderOpgeschort"
Browse files Browse the repository at this point in the history
This reverts commit 7449bf9.
  • Loading branch information
Hristo Iliev committed Feb 26, 2025
1 parent 584ce84 commit 60bf5b9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/net/atos/client/zgw/zrc/model/Zaak.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import jakarta.json.bind.annotation.JsonbTransient;

import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.hibernate.validator.constraints.Length;

import net.atos.client.zgw.drc.model.generated.VertrouwelijkheidaanduidingEnum;
Expand Down Expand Up @@ -518,7 +517,7 @@ public boolean isOpgeschort() {

@JsonbTransient
public boolean isEerderOpgeschort() {
return opschorting != null && StringUtils.isNotEmpty(opschorting.getReden());
return opschorting != null;
}

@JsonbTransient
Expand Down

0 comments on commit 60bf5b9

Please sign in to comment.