Remove comment

This commit is contained in:
2025-01-31 11:47:08 +01:00
parent 76792f8465
commit c13320ab57

View File

@ -42,7 +42,6 @@ public class SigningRequestDocumentController implements SigningRequestDocumentA
JsonNode patchNode = objectMapper.valueToTree(patchOperations);
JsonPatch jsonPatch = JsonPatch.fromJson(patchNode);
// Convert the entity to JsonNode and apply the patch
JsonNode entityNode = objectMapper.convertValue(object, JsonNode.class);
JsonNode patchedNode = jsonPatch.apply(entityNode);