From ef4f3a506b692e521ad2e9a75837f21131152d3c Mon Sep 17 00:00:00 2001 From: Claudia Agache Date: Fri, 4 Sep 2020 10:14:44 +0300 Subject: [PATCH] code review comments --- .../org/alfresco/rest/rm/community/base/BaseRMRestTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java index afd58ae54a..3a39086362 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java @@ -533,7 +533,7 @@ public class BaseRMRestTest extends RestTest * @return the created record * @throws Exception */ - public Record createElectronicRecord(String parentId, String name) throws Exception + public Record createElectronicRecord(String parentId, String name) { return createElectronicRecord(parentId, name ,null); } @@ -547,7 +547,7 @@ public class BaseRMRestTest extends RestTest * @return the created record * @throws Exception */ - public Record createElectronicRecord(String parentId, String name, UserModel user) throws Exception + public Record createElectronicRecord(String parentId, String name, UserModel user) { RecordFolderAPI recordFolderAPI = restAPIFactory.getRecordFolderAPI(user); Record recordModel = Record.builder().name(name).nodeType(CONTENT_TYPE).build();