Skip to content

Commit

Permalink
Not used bi-directional relation removed
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Mar 14, 2024
1 parent 4d0c410 commit 8aafb76
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions server/src/main/java/access/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ public class User implements Serializable, Provisionable {
@OneToMany(mappedBy = "user", orphanRemoval = true, fetch = FetchType.EAGER, cascade = CascadeType.ALL)
private Set<UserRole> userRoles = new HashSet<>();

@OneToMany(mappedBy = "user", orphanRemoval = true, fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JsonIgnore
private Set<RemoteProvisionedUser> remoteProvisionedUsers = new HashSet<>();

@Transient
private List<Map<String, Object>> applications = Collections.emptyList();

Expand Down
1 change: 0 additions & 1 deletion server/src/main/java/access/voot/VootController.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package access.voot;

import access.aggregation.AttributeAggregatorController;
import access.model.Role;
import access.model.User;
import access.model.UserRole;
Expand Down

0 comments on commit 8aafb76

Please sign in to comment.