1
0
Fork 0

make setter void

This commit is contained in:
sandro.labruzzo 2024-12-03 14:31:11 +01:00
parent 0517e452e3
commit cc6bbbb804
1 changed files with 1 additions and 2 deletions

View File

@ -31,8 +31,7 @@ public class PMAffiliation {
return identifier; return identifier;
} }
public PMAffiliation setIdentifier(PMIdentifier identifier) { public void setIdentifier(PMIdentifier identifier) {
this.identifier = identifier; this.identifier = identifier;
return this;
} }
} }