removed the duration attribute (most of the times it is set to 0)

This commit is contained in:
Miriam Baglioni 2020-07-30 16:45:03 +02:00
parent 57c87b7653
commit e163b1df79
1 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ public class Project implements Serializable {
private String keywords;
private String duration;
// private String duration; removed because the most of the times is set to 0
private boolean openaccessmandateforpublications;
@ -111,13 +111,13 @@ public class Project implements Serializable {
this.keywords = keywords;
}
public String getDuration() {
return duration;
}
public void setDuration(String duration) {
this.duration = duration;
}
// public String getDuration() {
// return duration;
// }
//
// public void setDuration(String duration) {
// this.duration = duration;
// }
public boolean isOpenaccessmandateforpublications() {
return openaccessmandateforpublications;