diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java index 7fd5575280..feb5cb712a 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/FilePlanComponentAPI.java @@ -190,7 +190,7 @@ public class FilePlanComponentAPI extends RestAPI root.fieldNames().forEachRemaining(f -> { try { - builder.addMultiPart(f, root.get(f).asText(), ContentType.JSON.name()); + builder.addMultiPart(f, root.get(f).asText(), ContentType.JSON.name()); } catch (Exception error) { @@ -206,7 +206,6 @@ public class FilePlanComponentAPI extends RestAPI */ Response response = given() .spec(builder.build()) - .log().everything() .when() .post("fileplan-components/{fileplanComponentId}/children?{parameters}", parentId, getParameters()) .andReturn();