Skip to content

Commit

Permalink
fix getter annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaetanbrl committed Jan 2, 2025
1 parent 5164dc3 commit 89e0d21
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ public void setMail(String mail) {
}

@JsonProperty(JSON_ORG_UNIQ_ID)
public void setOrgUniqueId(String orgUniqueId) {
this.ext.setOrgUniqueId(orgUniqueId);
}

public String getOrgUniqueId() {
return this.ext.getOrgUniqueId();
}

public void setOrgUniqueId(String orgUniqueId) {
this.ext.setOrgUniqueId(orgUniqueId);
}
}

0 comments on commit 89e0d21

Please sign in to comment.