thomasmueller commented on code in PR #1577:
URL: https://github.com/apache/jackrabbit-oak/pull/1577#discussion_r1745828185


##########
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/FlatFileNodeStoreBuilder.java:
##########
@@ -283,7 +324,7 @@ public List<IndexStore> buildList(IndexHelper indexHelper, 
IndexerSupport indexe
     private IndexStoreFiles createdSortedStoreFiles() throws IOException, 
CompositeException {
         // Check system property defined path
         String sortedFilePath = 
System.getProperty(OAK_INDEXER_SORTED_FILE_PATH);
-        if (StringUtils.isNotBlank(sortedFilePath)) {
+        if (sortedFilePath != null && !sortedFilePath.isEmpty()) {

Review Comment:
   I'll revert this... I couldn't compile this part of the code due to a 
problem with the dependency.
   
   (I don't think the usage of "StringUtils.isNotBlank" is intentional btw.)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to