add method addPid

This commit is contained in:
Miriam Baglioni 2020-04-23 11:07:44 +02:00
parent 5153d88bd3
commit 04fc223346
1 changed files with 3 additions and 9 deletions

View File

@ -2,7 +2,6 @@ package eu.dnetlib.dhp.schema.oaf;
import java.io.Serializable;
import java.util.*;
import java.util.stream.Collectors;
public class Author implements Serializable {
@ -86,17 +85,12 @@ public class Author implements Serializable {
public void addPid(StructuredProperty pid) {
if (pid == null)
return;
if (pid == null) return;
if(this.pid == null){
if (this.pid == null) {
this.pid = Arrays.asList(pid);
}else{
} else {
this.pid.add(pid);
}
}
}