From c26b70520ac975e69bb7214f00c19551d457c7e1 Mon Sep 17 00:00:00 2001 From: "luca.frosini" Date: Thu, 9 Nov 2023 18:56:02 +0100 Subject: [PATCH] Improved contexts limit offset --- .../client/ResourceRegistryClientImpl.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientImpl.java b/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientImpl.java index a39bc1a..647583a 100644 --- a/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientImpl.java +++ b/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientImpl.java @@ -193,7 +193,6 @@ public class ResourceRegistryClientImpl extends BaseRequestInfo implements Resou typesKnowledge.setTypesDiscoverer(new RRCTypesDiscoverer(this)); } - /** * It reads all the contexts from server. * The cache used for contexts is bypassed and not updated. @@ -204,12 +203,6 @@ public class ResourceRegistryClientImpl extends BaseRequestInfo implements Resou return getAllContextFromServer(offset, limit); } - /** - * It reads all the contexts from server. - * The cache used for contexts is bypassed and not updated. - * @return All Contexts read from server - * @throws ResourceRegistryException - */ protected List getAllContextFromServer(Integer offset, Integer limit) throws ResourceRegistryException { try { logger.info("Going to read all {}s", Context.NAME);