Skip to content

Commit

Permalink
NP fix #deploy-test-dolly-backend
Browse files Browse the repository at this point in the history
  • Loading branch information
krharum committed Sep 15, 2023
1 parent 74144dc commit debe70d
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
import org.apache.commons.lang3.builder.HashCodeBuilder;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import static java.util.Objects.isNull;
import static org.apache.logging.log4j.util.Strings.isNotBlank;

@Entity
Expand Down Expand Up @@ -132,6 +134,14 @@ public class BestillingProgress implements Serializable {
@Transient
private List<String> isTpsSyncEnv;

public List<String> getIsTpsSyncEnv() {

if (isNull(isTpsSyncEnv)) {
isTpsSyncEnv = new ArrayList<>();
}
return isTpsSyncEnv;
}

private String feil;

public BestillingProgress(Bestilling bestilling, String ident, Master master) {
Expand Down

0 comments on commit debe70d

Please sign in to comment.