diff --git a/src/main/java/org/mitre/fhir/authorization/AuthorizationController.java b/src/main/java/org/mitre/fhir/authorization/AuthorizationController.java index 5ee53c06..ace6f27c 100644 --- a/src/main/java/org/mitre/fhir/authorization/AuthorizationController.java +++ b/src/main/java/org/mitre/fhir/authorization/AuthorizationController.java @@ -302,7 +302,7 @@ private static String validateClient(HttpServletRequest request, String clientId algorithm = Algorithm.ECDSA384((ECPublicKey) jwk.getPublicKey(), null); } else { // the above are the only 2 options supported in the SMART app launch test kit. - // if more are added, report support for them in the WellKnownAuthorizationEndpointController + // if more are added, report support for them in WellKnownAuthorizationEndpointController throw new ResponseStatusException(HttpStatus.BAD_REQUEST, "Unsupported encryption method " + decodedJwt.getAlgorithm()); }