Skip to content
Snippets Groups Projects

Resolve "UI Bug Semicolon"

3 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline

Files

@@ -71,11 +71,11 @@ public class ContainerImage {
@@ -71,11 +71,11 @@ public class ContainerImage {
private Instant lastModified;
private Instant lastModified;
@ToString.Exclude
@ToString.Exclude
@OneToMany(fetch = FetchType.LAZY, mappedBy = "image")
@OneToMany(fetch = FetchType.LAZY, cascade = {CascadeType.ALL, CascadeType.PERSIST}, mappedBy = "image")
private List<DataType> dataTypes;
private List<DataType> dataTypes;
@ToString.Exclude
@ToString.Exclude
@OneToMany(fetch = FetchType.LAZY, mappedBy = "image")
@OneToMany(fetch = FetchType.LAZY, cascade = {CascadeType.ALL, CascadeType.PERSIST}, mappedBy = "image")
private List<Operator> operators;
private List<Operator> operators;
}
}
Loading