Skip to content

Commit

Permalink
Apply suggestions by @Enet4
Browse files Browse the repository at this point in the history
Co-authored-by: Eduardo Pinho <enet4mikeenet@gmail.com>
  • Loading branch information
tiberio-baptista and Enet4 authored Oct 4, 2024
1 parent c1368eb commit 7243545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ public void run() {
}

public List<Task<Report>> index(Collection<URI> paths) {
logger.info("Starting indexing procedure for {} items.", paths.size());
logger.info("Starting indexing procedure for {} items", paths.size());

List<StorageInputStream> objectsToStore = new ArrayList<>();
ArrayList<Task<Report>> rettasks = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ JointQueryTask query(JointQueryTask holder, List<String> querySources, DimLevel
List<Task<Report>> index(URI path);


/** Easily performs indexation procedures over all active indexers. This operation is asynchronous
/** Easily performs indexing procedures over all active indexers. This operation is asynchronous
* and returns immediately.
*
* @param paths the paths to index
Expand Down Expand Up @@ -245,6 +245,7 @@ JointQueryTask query(JointQueryTask holder, List<String> querySources, DimLevel
*
* @param path the path to index
* @return a list of reports, one for each provider
* @deprecated Call {@linkplain #index} and get the result instead
*/
@Deprecated
List<Report> indexBlocking(URI path);
Expand Down

0 comments on commit 7243545

Please # to comment.