Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ static class ToOneContainer {
@OneToOne(orphanRemoval = true, fetch = FetchType.LAZY)
private ChildEntity child;

private Integer count;
private Integer countValue;

public ToOneContainer() {
}

public ToOneContainer(ChildEntity child, Integer count) {
public ToOneContainer(ChildEntity child, Integer countValue) {
this.child = child;
this.count = count;
this.countValue = countValue;
}

public ChildEntity getChild() {
Expand Down
Loading