Skip to content

Commit

Permalink
Remove the duplicated methods set/getAbstract.
Browse files Browse the repository at this point in the history
  • Loading branch information
taojing2002 committed Sep 5, 2019
1 parent 3840f49 commit 243ca30
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public class DataPackage
private QualityReport qualityReport = null;
private String system = null;
private String title = null;
private String abstractText = null;
private List<Party> creators = null;
private String language = null;
private List<String> keywords = null;
Expand Down Expand Up @@ -1117,22 +1116,6 @@ public void setSystem(String systemValue) {
this.system = systemValue;
}

/**
* Set the abstract content for the datapackage
* @param abstractText
*/
public void setAbstract(String abstractText) {
this.abstractText = abstractText;
}

/**
* Retrieve the abstract content for the datapackage
* @return
*/
public String getAbstract() {
return this.abstractText;
}


/**
* Sets the value of the 'title' to the specified String
Expand Down

0 comments on commit 243ca30

Please sign in to comment.