Skip to content

Commit

Permalink
Merge pull request #32 from yy20716/add-getter-deprecated
Browse files Browse the repository at this point in the history
Added a getter method for the field Deprecated in Meta
  • Loading branch information
cmungall authored Jun 11, 2021
2 parents 6a586cc + 0e942e8 commit 69ea3c0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/main/java/org/geneontology/obographs/model/Meta.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ public List<String> getSubsets() {
return subsets;
}

/**
* @return true if deprecated
*/
public Boolean getDeprecated() {
return deprecated;
}

/**
* @return the synonymPropertyValues
*/
Expand Down Expand Up @@ -231,4 +238,4 @@ public Meta build() {

}

}
}

0 comments on commit 69ea3c0

Please sign in to comment.