Skip to content

Commit

Permalink
Supplering
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen committed Feb 2, 2025
1 parent 8f2b0d3 commit 7a954e8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ private static boolean beholdeUtlandsadresseUtenomEndringLandLinje3(Map.Entry<No
if (Optional.ofNullable(entry.getKey().getLocalName()).orElse("").contains("adresselinje3")) {
var al3 = entry.getValue();
return al3 != null && al3.getElement1() != null && al3.getElement2() != null;
} else if (Optional.ofNullable(entry.getKey().getLocalName()).orElse("").contains("adresselinje4")) {
var al4 = entry.getValue();
return al4 != null && al4.getElement1() != null && al4.getElement2() != null;
} else {
return true;
}
Expand Down

0 comments on commit 7a954e8

Please sign in to comment.