We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
PATCH
1 parent af3dc6a commit b665758Copy full SHA for b665758
src/main/java/com/atomgraph/linkeddatahub/server/model/impl/DirectGraphStoreImpl.java
@@ -404,7 +404,7 @@ public Response patch(UpdateRequest updateRequest)
404
changedModel.add(existingModel.listStatements(resource, null, (RDFNode) null));
405
406
// if PATCH results in an empty model, treat it as a DELETE request
407
- if (changedModel.isEmpty()) return delete(Boolean.FALSE, getURI());
+ if (changedModel.isEmpty()) return delete();
408
409
validate(changedModel); // this would normally be done transparently by the ValidatingModelProvider
410
put(dataset.getDefaultModel(), Boolean.FALSE, getURI());
0 commit comments