Skip to content

Commit

Permalink
fix missing parantheses in IdentityTrustTransformationExtension
Browse files Browse the repository at this point in the history
  • Loading branch information
mspiekermann committed Jun 12, 2024
1 parent 2f42c7f commit 5e6140b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void initialize(ServiceExtensionContext context) {
.onFailure(failure -> context.getMonitor().warning("Failed to register cached json-ld document: " + failure.getFailureDetail()));

getResourceUri("document" + File.separator + "dcp.v08.jsonld")
.onSuccess(uri -> jsonLdService.registerCachedDocumentDCP_CONTEXT_URL, uri))
.onSuccess(uri -> jsonLdService.registerCachedDocument(DCP_CONTEXT_URL, uri))
.onFailure(failure -> context.getMonitor().warning("Failed to register cached json-ld document: " + failure.getFailureDetail()));

typeTransformerRegistry.register(new JsonObjectToPresentationQueryTransformer(typeManager.getMapper(JSON_LD)));
Expand Down

0 comments on commit 5e6140b

Please sign in to comment.