Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed plural form
  • Loading branch information
muttcg committed Mar 13, 2020
1 parent 0d015b1 commit e589afc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public enum OccurrenceSearchParameter implements SearchParameter {
/**
* User identifiers from GbifTerm.recordedByID and GbifTerm.identifiedByID
*/
RECORDED_BY_IDS(String.class);
RECORDED_BY_ID(String.class);

private final Class<?> type;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void addMediaTypeFilter(MediaType mediaType) {
}

public void addRecordedByIdsFilter(String recordedByIds) {
addParameter(OccurrenceSearchParameter.RECORDED_BY_IDS, recordedByIds);
addParameter(OccurrenceSearchParameter.RECORDED_BY_ID, recordedByIds);
}

}

0 comments on commit e589afc

Please sign in to comment.