Skip to content

Commit

Permalink
fixed method User#getIdentifiers() should not be public
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Nov 26, 2021
1 parent 00c8272 commit c94ac49
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions para-core/src/main/java/com/erudika/para/core/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,7 @@ public void delete() {
* Returns a list of identifiers for this user (can have many).
* @return a list of {@link Sysprop} objects
*/
@JsonIgnore
public List<Sysprop> getIdentifiers() {
private List<Sysprop> getIdentifiers() {
return CoreUtils.getInstance().getSearch().findTerms(getAppid(), Utils.type(Sysprop.class),
Collections.singletonMap(Config._CREATORID, getId()), true);
}
Expand Down

0 comments on commit c94ac49

Please sign in to comment.