Added "ignoreErrors" parameter

This commit is contained in:
Francesco Mangiacrapa 2023-04-26 14:09:39 +02:00
parent 7eef6d1441
commit b820f68e7e
1 changed files with 2 additions and 1 deletions

View File

@ -303,11 +303,12 @@ public class DefaultDocumentsClient<T extends Project> implements Projects<T> {
* @param id the id
* @param path the path
* @param force the force
* @param ignoreErrors the ignore errors
* @return the t
* @throws RemoteException the remote exception
*/
@Override
public T deleteFileSet(String id, String path, Boolean force) throws RemoteException {
public T deleteFileSet(String id, String path, Boolean force, Boolean ignoreErrors) throws RemoteException {
try {
log.debug("Deleting Fileset for ID {}  [useCaseDescriptor {}  , class {}] at {} (force {} )",
id, profileID,getManagedClass(),path, force);