Removed dependency in FolderImExporter that caused a cycle.
parent
2c317630f1
commit
cef0e6602d
|
|
@ -1,5 +1,6 @@
|
|||
package org.librecms.contentsection;
|
||||
|
||||
import org.libreccm.categorization.Category;
|
||||
import org.libreccm.categorization.Domain;
|
||||
import org.libreccm.imexport.AbstractEntityImExporter;
|
||||
import org.libreccm.imexport.Exportable;
|
||||
|
|
@ -50,7 +51,8 @@ public class FolderImExporter extends AbstractEntityImExporter<Folder> {
|
|||
@Override
|
||||
protected Set<Class<? extends Exportable>> getRequiredEntities() {
|
||||
return Set.of(
|
||||
ContentSection.class,
|
||||
// ContentSection.class,
|
||||
Category.class,
|
||||
Domain.class
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue