From e163b1df79b2e2c14e0bd0cceb9d7e8f5ae3948d Mon Sep 17 00:00:00 2001 From: "miriam.baglioni" Date: Thu, 30 Jul 2020 16:45:03 +0200 Subject: [PATCH] removed the duration attribute (most of the times it is set to 0) --- .../dhp/schema/dump/oaf/graph/Project.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java index edd55158e..a92311b0e 100644 --- a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java +++ b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/Project.java @@ -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;