1
0
Fork 0

Fixed error on empty affiliation

This commit is contained in:
sandro.labruzzo 2024-12-02 14:00:59 +01:00
parent ca2d480df3
commit 0517e452e3
1 changed files with 1 additions and 2 deletions

View File

@ -23,9 +23,8 @@ public class PMAffiliation {
return name; return name;
} }
public PMAffiliation setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
return this;
} }
public PMIdentifier getIdentifier() { public PMIdentifier getIdentifier() {