remove unused property path
authorAndreas Müller <a.mueller@bgbm.org>
Fri, 23 Feb 2024 10:18:40 +0000 (11:18 +0100)
committerAndreas Müller <a.mueller@bgbm.org>
Fri, 23 Feb 2024 12:18:56 +0000 (13:18 +0100)
cdmlib-remote/src/main/java/eu/etaxonomy/cdm/remote/controller/ClassificationPortalListController.java
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/ClassificationServiceImpl.java
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/IClassificationService.java

index 86df3b294668077ca586b208c3e97fffeef56260..104a5d0e6126c6604a4455a754b19ab3ca05c578 100644 (file)
@@ -134,7 +134,7 @@ public class ClassificationPortalListController extends AbstractIdentifiableList
         List<TaxonNodeDto> children;
         try {
             children = service.listChildNodeDtosOfTaxon(taxonUuid, classificationUuid, subtreeUuid,
-                    includeUnpublished, null, null, sortMode, NODE_INIT_STRATEGY);
+                    includeUnpublished, null, null, sortMode);
         } catch (FilterException e) {
             HttpStatusMessage.SUBTREE_FILTER_INVALID.send(response);
             return null;
index 50e1e0c04014edcba2eca853cdc4bfb8a7c0b04b..496ace11c7fd47687d161d64d545b9bf1151d536 100644 (file)
@@ -331,8 +331,7 @@ public class ClassificationServiceImpl
     @Override
     public List<TaxonNodeDto> listChildNodeDtosOfTaxon(UUID taxonUuid, UUID classificationUuid,
             UUID subtreeUuid, boolean includeUnpublished,
-            Integer pageSize, Integer pageIndex, TaxonNodeDtoSortMode sortMode,
-            List<String> propertyPaths) throws FilterException{
+            Integer pageSize, Integer pageIndex, TaxonNodeDtoSortMode sortMode) throws FilterException{
 
         Classification classification = dao.load(classificationUuid);
         Taxon taxon = (Taxon) taxonDao.load(taxonUuid);
index 011a019415c05959b9b0c86316505d817e4da018..2ce702aee90d59e357362bba55892ed7b36fc28c 100644 (file)
@@ -235,7 +235,7 @@ public interface IClassificationService extends IIdentifiableEntityService<Class
             Integer pageSize, Integer pageIndex, List<String> propertyPaths) throws FilterException;
 
     public List<TaxonNodeDto> listChildNodeDtosOfTaxon(UUID taxonUuid, UUID classificationUuid, UUID subtreeUuid, boolean includeUnpublished,
-            Integer pageSize, Integer pageIndex, TaxonNodeDtoSortMode comparator, List<String> propertyPaths) throws FilterException;
+            Integer pageSize, Integer pageIndex, TaxonNodeDtoSortMode comparator) throws FilterException;
 
     /**
      * @param taxonNode