Skip to content

Commit

Permalink
fix: Remove duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenzo-ingenito committed Nov 25, 2024
1 parent 502609c commit eb11e5b
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public class JwtSRV extends AbstractService implements IJwtSRV {
public void validatePayloadForValidation(JWTPayloadDTO payload) {
performCommonValidation(payload);
checkNull(payload.getPatient_consent(), "patient_consent");
checkNull(payload.getResource_hl7_type(), "resource_hl7_type");
checkNull(payload.getSubject_application_id(), "subject_application_id");
checkNull(payload.getSubject_application_vendor(), "subject_application_vendor");
checkNull(payload.getSubject_application_version(), "subject_application_version");
Expand Down

0 comments on commit eb11e5b

Please sign in to comment.