Skip to content

Commit

Permalink
FIX: Fjerner en del døde imports og skriver om til Optional<Boolean> …
Browse files Browse the repository at this point in the history
…istedenfor Boolean null (#484)
  • Loading branch information
pekern authored Mar 14, 2024
1 parent 7c2133c commit a7b3bf6
Show file tree
Hide file tree
Showing 28 changed files with 75 additions and 104 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import java.util.Collections;
import java.util.List;

import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Test;

import no.nav.folketrygdloven.beregningsgrunnlag.foreslå.RegelForeslåBeregningsgrunnlag;
Expand All @@ -20,7 +19,6 @@
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.grunnlag.inntekt.Inntektsgrunnlag;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.grunnlag.inntekt.Inntektskilde;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.resultat.BeregningsgrunnlagPeriode;
import no.nav.fpsak.nare.doc.RuleDescriptionDigraph;
import no.nav.fpsak.nare.evaluation.summary.EvaluationSerializer;
import no.nav.fpsak.nare.specification.Specification;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.stream.Stream;

class FastsettPerioderNaturalytelseRegelTest {
private static final LocalDate STP = LocalDate.of(2023,5,1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import java.time.Month;
import java.util.Arrays;

import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

Expand All @@ -18,7 +17,6 @@
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.resultat.Beregningsgrunnlag;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.resultat.BeregningsgrunnlagPeriode;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.resultat.BeregningsgrunnlagPrStatus;
import no.nav.fpsak.nare.doc.RuleDescriptionDigraph;
import no.nav.fpsak.nare.evaluation.summary.EvaluationSerializer;
import no.nav.fpsak.nare.specification.Specification;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import org.junit.jupiter.api.Test;

import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.AktivitetStatus;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.Dekningsgrad;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.RegelMerknad;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.RegelResultat;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.grunnlag.inntekt.Arbeidsforhold;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ void skal_teste_to_arbeidsforhold_beregningsgrunnlag_under_6G_full_refusjon_grad
// Assert
assertPeriode(300_000, 300_000, 300_000);

Assertions.assertThat(snAndel.getAvkortetPrÅr().compareTo(BigDecimal.ZERO)).isEqualTo(0);
Assertions.assertThat(snAndel.getRedusertPrÅr().compareTo(BigDecimal.ZERO)).isEqualTo(0);
Assertions.assertThat(snAndel.getAvkortetPrÅr().compareTo(BigDecimal.ZERO)).isZero();
Assertions.assertThat(snAndel.getRedusertPrÅr().compareTo(BigDecimal.ZERO)).isZero();

Assertions.assertThat(andel.getAvkortetPrÅr().compareTo(BigDecimal.valueOf(300000))).isEqualTo(0);
Assertions.assertThat(andel.getRedusertPrÅr().compareTo(BigDecimal.valueOf(300000))).isEqualTo(0);
Assertions.assertThat(andel.getAvkortetPrÅr().compareTo(BigDecimal.valueOf(300000))).isZero();
Assertions.assertThat(andel.getRedusertPrÅr().compareTo(BigDecimal.valueOf(300000))).isZero();


assertThat(grenseverdiRegelesultat).isNotNull();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
package no.nav.folketrygdloven.kalkulator.adapter.vltilregelmodell;

import java.time.LocalDate;
import java.util.Comparator;
import java.util.List;
import java.util.Optional;

import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.Aktivitet;
import no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.grunnlag.inntekt.Arbeidsforhold;
import no.nav.folketrygdloven.kalkulator.adapter.vltilregelmodell.kodeverk.MapOpptjeningAktivitetTypeFraVLTilRegel;
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BGAndelArbeidsforholdDto;
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BeregningsgrunnlagPrStatusOgAndelDto;
import no.nav.folketrygdloven.kalkulator.modell.iay.AktivitetsAvtaleDto;
import no.nav.folketrygdloven.kalkulator.modell.iay.InntektArbeidYtelseGrunnlagDto;
import no.nav.folketrygdloven.kalkulator.modell.iay.InntektsmeldingDto;
import no.nav.folketrygdloven.kalkulator.modell.typer.Arbeidsgiver;
import no.nav.folketrygdloven.kalkulator.modell.typer.InternArbeidsforholdRefDto;
import no.nav.folketrygdloven.kalkulator.tid.Intervall;
import no.nav.folketrygdloven.kalkulus.kodeverk.AktivitetStatus;
import no.nav.folketrygdloven.kalkulus.kodeverk.OpptjeningAktivitetType;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import no.nav.folketrygdloven.kalkulator.adapter.vltilregelmodell.periodisering.ErFjernetIOverstyrt;
import no.nav.folketrygdloven.kalkulator.adapter.vltilregelmodell.periodisering.FinnAnsettelsesPeriode;
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BeregningAktivitetAggregatDto;
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BeregningsgrunnlagGrunnlagDto;
import no.nav.folketrygdloven.kalkulator.modell.iay.InntektArbeidYtelseGrunnlagDto;
import no.nav.folketrygdloven.kalkulator.modell.iay.YrkesaktivitetDto;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package no.nav.folketrygdloven.kalkulator.felles.periodesplitting;

import java.util.List;
import java.util.Objects;
import java.util.function.BiFunction;
import java.util.function.BiPredicate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ public void lagDto(BeregningsgrunnlagGUIInput input,

KunYtelseDto lagKunYtelseDto(BeregningsgrunnlagGUIInput input) {
KunYtelseDto dto = new KunYtelseDto();

dto.setErBesteberegning(harBesteberegning(input.getBeregningsgrunnlag(), input.getBeregningsgrunnlagGrunnlag().getBeregningsgrunnlagTilstand()));
harBesteberegning(input.getBeregningsgrunnlag(), input.getBeregningsgrunnlagGrunnlag().getBeregningsgrunnlagTilstand()).ifPresent(dto::setErBesteberegning);
settVerdier(dto, input.getBeregningsgrunnlag(), input.getIayGrunnlag());
if (input.getYtelsespesifiktGrunnlag() instanceof ForeldrepengerGrunnlag foreldrepengerGrunnlag) {
dto.setFodendeKvinneMedDP(foreldrepengerGrunnlag.isKvalifisererTilBesteberegning());
}
return dto;
}

private Boolean harBesteberegning(BeregningsgrunnlagDto beregningsgrunnlag, BeregningsgrunnlagTilstand aktivTilstand) {
private Optional<Boolean> harBesteberegning(BeregningsgrunnlagDto beregningsgrunnlag, BeregningsgrunnlagTilstand aktivTilstand) {
if (aktivTilstand.erFør(BeregningsgrunnlagTilstand.KOFAKBER_UT)) {
return null;
return Optional.empty();
}
return beregningsgrunnlag.getBeregningsgrunnlagPerioder().stream()
.flatMap(periode -> periode.getBeregningsgrunnlagPrStatusOgAndelList().stream()).anyMatch(andel -> andel.getBesteberegningPrÅr() != null);
var erBesteberegnet = beregningsgrunnlag.getBeregningsgrunnlagPerioder().stream()
.flatMap(periode -> periode.getBeregningsgrunnlagPrStatusOgAndelList().stream()).anyMatch(andel -> andel.getBesteberegningPrÅr() != null);
return Optional.of(erBesteberegnet);
}

private void settVerdier(KunYtelseDto dto, BeregningsgrunnlagDto beregningsgrunnlag, InntektArbeidYtelseGrunnlagDto inntektArbeidYtelseGrunnlag) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import no.nav.folketrygdloven.kalkulus.response.v1.beregningsgrunnlag.gui.FaktaOmBeregningDto;
import no.nav.folketrygdloven.kalkulus.response.v1.beregningsgrunnlag.gui.VurderBesteberegningDto;

import java.util.Optional;

public class VurderBesteberegningTilfelleDtoTjeneste {

public void lagDto(BeregningsgrunnlagGUIInput input, FaktaOmBeregningDto faktaOmBeregningDto) {
Expand All @@ -19,7 +21,7 @@ public void lagDto(BeregningsgrunnlagGUIInput input, FaktaOmBeregningDto faktaOm

private void settVerdier(BeregningsgrunnlagDto bg, BeregningsgrunnlagTilstand aktivTilstand, FaktaOmBeregningDto faktaOmBeregningDto) {
VurderBesteberegningDto vurderBesteberegning = new VurderBesteberegningDto();
vurderBesteberegning.setSkalHaBesteberegning(harBesteberegning(bg, aktivTilstand));
harBesteberegning(bg, aktivTilstand).ifPresent(vurderBesteberegning::setSkalHaBesteberegning);
faktaOmBeregningDto.setVurderBesteberegning(vurderBesteberegning);
}

Expand All @@ -28,11 +30,12 @@ private boolean harBgTilfelle(BeregningsgrunnlagDto beregningsgrunnlag) {
|| beregningsgrunnlag.getFaktaOmBeregningTilfeller().contains(FaktaOmBeregningTilfelle.FASTSETT_BESTEBEREGNING_FØDENDE_KVINNE);
}

private Boolean harBesteberegning(BeregningsgrunnlagDto beregningsgrunnlag, BeregningsgrunnlagTilstand aktivTilstand) {
private Optional<Boolean> harBesteberegning(BeregningsgrunnlagDto beregningsgrunnlag, BeregningsgrunnlagTilstand aktivTilstand) {
if (aktivTilstand.erFør(BeregningsgrunnlagTilstand.KOFAKBER_UT)) {
return null;
return Optional.empty();
}
return beregningsgrunnlag.getBeregningsgrunnlagPerioder().stream()
.flatMap(periode -> periode.getBeregningsgrunnlagPrStatusOgAndelList().stream()).anyMatch(andel -> andel.getBesteberegningPrÅr() != null);
var harBesteberegning = beregningsgrunnlag.getBeregningsgrunnlagPerioder().stream()
.flatMap(periode -> periode.getBeregningsgrunnlagPrStatusOgAndelList().stream()).anyMatch(andel -> andel.getBesteberegningPrÅr() != null);
return Optional.of(harBesteberegning);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,59 +19,57 @@

class VurderRefusjonTilfelleDtoTjeneste {

public void lagDto(BeregningsgrunnlagGUIInput input, FaktaOmBeregningDto faktaOmBeregningDto) {
BeregningsgrunnlagDto beregningsgrunnlag = input.getBeregningsgrunnlag();
List<FaktaOmBeregningTilfelle> tilfeller = beregningsgrunnlag.getFaktaOmBeregningTilfeller();
if (!tilfeller.contains(FaktaOmBeregningTilfelle.VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT)) {
return;
}
List<RefusjonskravSomKommerForSentDto> refusjonskravSomKommerForSentList = lagListeMedKravSomKommerForSent(input);
faktaOmBeregningDto.setRefusjonskravSomKommerForSentListe(refusjonskravSomKommerForSentList);
}
public void lagDto(BeregningsgrunnlagGUIInput input, FaktaOmBeregningDto faktaOmBeregningDto) {
BeregningsgrunnlagDto beregningsgrunnlag = input.getBeregningsgrunnlag();
List<FaktaOmBeregningTilfelle> tilfeller = beregningsgrunnlag.getFaktaOmBeregningTilfeller();
if (!tilfeller.contains(FaktaOmBeregningTilfelle.VURDER_REFUSJONSKRAV_SOM_HAR_KOMMET_FOR_SENT)) {
return;
}
List<RefusjonskravSomKommerForSentDto> refusjonskravSomKommerForSentList = lagListeMedKravSomKommerForSent(input);
faktaOmBeregningDto.setRefusjonskravSomKommerForSentListe(refusjonskravSomKommerForSentList);
}

private List<RefusjonskravSomKommerForSentDto> lagListeMedKravSomKommerForSent(BeregningsgrunnlagGUIInput input) {
List<BeregningRefusjonOverstyringDto> refusjonOverstyringer = input.getBeregningsgrunnlagGrunnlag().getRefusjonOverstyringer()
.map(BeregningRefusjonOverstyringerDto::getRefusjonOverstyringer)
.orElse(Collections.emptyList());
private List<RefusjonskravSomKommerForSentDto> lagListeMedKravSomKommerForSent(BeregningsgrunnlagGUIInput input) {
List<BeregningRefusjonOverstyringDto> refusjonOverstyringer = input.getBeregningsgrunnlagGrunnlag().getRefusjonOverstyringer()
.map(BeregningRefusjonOverstyringerDto::getRefusjonOverstyringer)
.orElse(Collections.emptyList());

Set<Arbeidsgiver> arbeidsgivere = InntektsmeldingMedRefusjonTjeneste.finnArbeidsgiverSomHarSøktRefusjonForSent(
input.getKoblingReferanse(),
input.getIayGrunnlag(),
input.getBeregningsgrunnlagGrunnlag(),
input.getKravperioderPrArbeidsgiver(),
input.getFagsakYtelseType());
return arbeidsgivere
.stream()
.map(arbeidsgiver -> {
RefusjonskravSomKommerForSentDto dto = new RefusjonskravSomKommerForSentDto();
dto.setArbeidsgiverIdent(arbeidsgiver.getIdentifikator());
dto.setErRefusjonskravGyldig(sjekkStatusPåRefusjon(arbeidsgiver.getIdentifikator(), refusjonOverstyringer, input.getSkjæringstidspunktForBeregning()));
Set<Arbeidsgiver> arbeidsgivere = InntektsmeldingMedRefusjonTjeneste.finnArbeidsgiverSomHarSøktRefusjonForSent(
input.getKoblingReferanse(),
input.getIayGrunnlag(),
input.getBeregningsgrunnlagGrunnlag(),
input.getKravperioderPrArbeidsgiver(),
input.getFagsakYtelseType());
return arbeidsgivere
.stream()
.map(arbeidsgiver -> {
RefusjonskravSomKommerForSentDto dto = new RefusjonskravSomKommerForSentDto();
dto.setArbeidsgiverIdent(arbeidsgiver.getIdentifikator());
sjekkStatusPåRefusjon(arbeidsgiver.getIdentifikator(), refusjonOverstyringer, input.getSkjæringstidspunktForBeregning()).ifPresent(dto::setErRefusjonskravGyldig);
return dto;
}).collect(Collectors.toList());
}

return dto;
}).collect(Collectors.toList());
}
private Optional<Boolean> sjekkStatusPåRefusjon(String identifikator,
List<BeregningRefusjonOverstyringDto> refusjonOverstyringer, LocalDate skjæringstidspunktForBeregning) {
Optional<BeregningRefusjonOverstyringDto> statusOpt = refusjonOverstyringer
.stream()
.filter(refusjonOverstyring -> refusjonOverstyring.getArbeidsgiver().getIdentifikator().equals(identifikator))
.findFirst();
if (statusOpt.isEmpty() && refusjonOverstyringer.isEmpty()) {
return Optional.empty();
}

private Boolean sjekkStatusPåRefusjon(String identifikator,
List<BeregningRefusjonOverstyringDto> refusjonOverstyringer, LocalDate skjæringstidspunktForBeregning) {
Optional<BeregningRefusjonOverstyringDto> statusOpt = refusjonOverstyringer
.stream()
.filter(refusjonOverstyring -> refusjonOverstyring.getArbeidsgiver().getIdentifikator().equals(identifikator))
.findFirst();
if (statusOpt.isEmpty() && refusjonOverstyringer.isEmpty()) {
return null;
}
return getErFristUtvidet(statusOpt, skjæringstidspunktForBeregning);
}

Optional<Boolean> erFristUtvidet = getErFristUtvidet(statusOpt, skjæringstidspunktForBeregning);
return erFristUtvidet.orElse(false);
}

private Optional<Boolean> getErFristUtvidet(Optional<BeregningRefusjonOverstyringDto> statusOpt, LocalDate skjæringstidspunktForBeregning) {
return statusOpt.flatMap(o -> {
if (o.getFørsteMuligeRefusjonFom().isPresent()) {
return Optional.of(skjæringstidspunktForBeregning.isEqual(o.getFørsteMuligeRefusjonFom().get()));
}
return o.getErFristUtvidet();
}
);
}
private Optional<Boolean> getErFristUtvidet(Optional<BeregningRefusjonOverstyringDto> statusOpt, LocalDate skjæringstidspunktForBeregning) {
return statusOpt.flatMap(o -> {
if (o.getFørsteMuligeRefusjonFom().isPresent()) {
return Optional.of(skjæringstidspunktForBeregning.isEqual(o.getFørsteMuligeRefusjonFom().get()));
}
return o.getErFristUtvidet();
}
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import java.util.Optional;

import no.nav.folketrygdloven.kalkulator.modell.typer.Arbeidsgiver;
import no.nav.folketrygdloven.kalkulator.modell.typer.EksternArbeidsforholdRef;
import no.nav.folketrygdloven.kalkulator.modell.typer.InternArbeidsforholdRefDto;

public class ArbeidsforholdInformasjonDtoBuilder {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
import java.time.LocalDateTime;
import java.util.List;
import java.util.Objects;
import java.util.Optional;

import no.nav.folketrygdloven.kalkulator.tid.Intervall;
import no.nav.folketrygdloven.kalkulus.kodeverk.AvklaringsbehovDefinisjon;
import no.nav.folketrygdloven.kalkulus.kodeverk.BeregningVenteårsak;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ public List<BeregningAvklaringsbehovResultat> getAvklaringsbehov() {
return avklaringsbehov;
}

public Boolean getVilkårOppfylt() {
public Optional<Boolean> getVilkårOppfylt() {

if (vilkårsresultat != null) {
return vilkårsresultat.stream().allMatch(BeregningVilkårResultat::getErVilkårOppfylt);
return Optional.of(vilkårsresultat.stream().allMatch(BeregningVilkårResultat::getErVilkårOppfylt));
}

return null;
return Optional.empty();
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ protected static BeregningAvklaringsbehovResultat autopunkt(AvklaringsbehovDefin

@Override
public List<BeregningAvklaringsbehovResultat> utledAvklaringsbehov(BeregningsgrunnlagRegelResultat regelResultat, BeregningsgrunnlagInput input, boolean erOverstyrt) {
if (regelResultat.getVilkårOppfylt() != null && !regelResultat.getVilkårOppfylt()) {
var vilkårErGodkjent = regelResultat.getVilkårOppfylt().orElse(false);
if (!vilkårErGodkjent) {
return emptyList();
}
LocalDate skjæringstidspunkt = regelResultat.getBeregningsgrunnlag().getSkjæringstidspunkt();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BeregningsgrunnlagGrunnlagDtoBuilder;
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BeregningsgrunnlagPeriodeDto;
import no.nav.folketrygdloven.kalkulator.modell.beregningsgrunnlag.BeregningsgrunnlagPrStatusOgAndelDto;
import no.nav.folketrygdloven.kalkulator.modell.opptjening.OpptjeningAktiviteterDto;
import no.nav.folketrygdloven.kalkulator.modell.typer.Arbeidsgiver;
import no.nav.folketrygdloven.kalkulator.testutilities.behandling.beregningsgrunnlag.BeregningAktivitetTestUtil;
import no.nav.folketrygdloven.kalkulator.tid.Intervall;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public class VurderBeregningsgrunnlagTjenesteTest {
// Assert
assertThat(resultat.getBeregningsgrunnlag()).isNotNull();
assertThat(resultat.getAvklaringsbehov()).isEmpty();
assertThat(resultat.getVilkårOppfylt()).isTrue();
assertThat(resultat.getVilkårOppfylt()).isPresent();
assertThat(resultat.getVilkårOppfylt().get()).isTrue();
assertThat(resultat.getBeregningsgrunnlag().getBeregningsgrunnlagPerioder()).hasSize(1);
var vilkårVurdering = resultat.getRegelsporinger().get().regelsporingPerioder().stream()
.filter(rs -> rs.regelType().equals(BeregningsgrunnlagPeriodeRegelType.VILKÅR_VURDERING))
Expand Down Expand Up @@ -122,7 +123,8 @@ public class VurderBeregningsgrunnlagTjenesteTest {
// Assert
assertThat(resultat.getBeregningsgrunnlag()).isNotNull();
assertThat(resultat.getAvklaringsbehov()).isEmpty();
assertThat(resultat.getVilkårOppfylt()).isFalse();
assertThat(resultat.getVilkårOppfylt()).isPresent();
assertThat(resultat.getVilkårOppfylt().get()).isFalse();
assertThat(resultat.getBeregningsgrunnlag().getBeregningsgrunnlagPerioder()).hasSize(1);
var vilkårVurdering = resultat.getRegelsporinger().get().regelsporingPerioder().stream()
.filter(rs -> rs.regelType().equals(BeregningsgrunnlagPeriodeRegelType.VILKÅR_VURDERING))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package no.nav.folketrygdloven.kalkulus.beregning.v1;

import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;

import no.nav.folketrygdloven.kalkulus.felles.v1.Periode;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonAutoDetect(fieldVisibility = Visibility.NONE, getterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE, creatorVisibility = Visibility.NONE)
@JsonInclude(value = Include.NON_ABSENT, content = Include.NON_EMPTY)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Pattern;
import no.nav.folketrygdloven.kalkulus.kodeverk.AktivitetStatus;
import no.nav.folketrygdloven.kalkulus.response.v1.TilstandResponse;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(value = NON_ABSENT, content = NON_EMPTY)
Expand Down
Loading

0 comments on commit a7b3bf6

Please sign in to comment.