Skip to content

Commit

Permalink
Fix EDASubsettingClient to use EDAStudyProvider instead of MetadataCache
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgaldi committed Jul 17, 2024
1 parent c07805d commit 887ed39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public List<String> getStudies() {
* @return optional study detail for the found study
*/
public Optional<APIStudyDetail> getStudy(String studyId) {
return Optional.of(ApiConversionUtil.getApiStudyDetail(Resources.getMetadataCache().getStudyById(studyId)));
return Optional.of(ApiConversionUtil.getApiStudyDetail(Resources.getStudyResolver().getStudyById(studyId)));
}

@Override
Expand Down

0 comments on commit 887ed39

Please sign in to comment.