removed affiliation from author as for #40 (comment)

This commit is contained in:
Miriam Baglioni 2020-08-13 11:59:51 +02:00
parent 02a4986e7b
commit 14ef4da2de
1 changed files with 0 additions and 10 deletions

View File

@ -16,8 +16,6 @@ public class Author implements Serializable {
private Pid pid;
private List<String> affiliation;
public String getFullname() {
return fullname;
}
@ -58,12 +56,4 @@ public class Author implements Serializable {
this.pid = pid;
}
public List<String> getAffiliation() {
return affiliation;
}
public void setAffiliation(List<String> affiliation) {
this.affiliation = affiliation;
}
}