| .. | .. |
|---|
| 115 | 115 | } |
|---|
| 116 | 116 | |
|---|
| 117 | 117 | Set<Organization> orgs = null; |
|---|
| 118 | | - List<Integer> orgsIds = user.getOrgsIds(); |
|---|
| 118 | + Set<Integer> orgsIds = user.getOrgsIds(); |
|---|
| 119 | 119 | if (orgsIds != null && orgsIds.size() > 0) { |
|---|
| 120 | 120 | orgs = new HashSet<>(); |
|---|
| 121 | 121 | for (Integer orgId : orgsIds) { |
|---|
| .. | .. |
|---|
| 154 | 154 | } |
|---|
| 155 | 155 | |
|---|
| 156 | 156 | Set<Organization> orgs = null; |
|---|
| 157 | | - List<Integer> orgsIds = user.getOrgsIds(); |
|---|
| 157 | + Set<Integer> orgsIds = user.getOrgsIds(); |
|---|
| 158 | 158 | if (orgsIds != null && orgsIds.size() > 0) { |
|---|
| 159 | 159 | orgs = new HashSet<>(); |
|---|
| 160 | 160 | for (Integer orgId : orgsIds) { |
|---|