#2422 - Remove extraneous jsr 305 @Nonnull

This commit is contained in:
Rob Bygrave
2021-10-19 17:59:25 +13:00
parent c7bb027c7d
commit a445557ec3
7 changed files with 0 additions and 66 deletions
@@ -1,6 +1,5 @@
package org.tests.query.cache;
import javax.annotation.Nonnull;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.List;
@@ -17,7 +16,6 @@ public class Contract {
private List<Position> positions;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "container", fetch = FetchType.LAZY)
@Nonnull
private List<AclContainerRelation> aclEntries = new ArrayList<>();
public Long getId() {