Skip to content

Commit

Permalink
Merge pull request #24 from pcvolkmer/fix_getstring
Browse files Browse the repository at this point in the history
fix: use getString() instead of toString()
  • Loading branch information
pcvolkmer authored Oct 2, 2024
2 parents 404a6cd + a1f8a49 commit 82f5ad4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Optional<Response> apply(Procedure procedure) {
}

var therapyId = procedure.getValue(FIELD_NAME_THERAPY);
if (null == therapyId || therapyId.toString().isBlank()) {
if (null == therapyId || therapyId.getString().isBlank()) {
return Optional.empty();
}

Expand Down

0 comments on commit 82f5ad4

Please sign in to comment.