mbaedke commented on code in PR #2380: URL: https://github.com/apache/jackrabbit-oak/pull/2380#discussion_r2213062755
########## oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/JournalReader.java: ########## @@ -54,7 +55,13 @@ protected JournalEntry computeNext() { String line = null; while ((line = reader.readLine()) != null) { if (line.indexOf(' ') != -1) { - List<String> splits = Splitter.on(' ').splitToList(line); + List<String> splits; + if (line.trim().isEmpty()) { + // special case handling for empty lines where we need to split by space + splits = Arrays.stream(line.split("")).map(String::trim).collect(Collectors.toList()); + } else { + splits = Arrays.stream(line.split(" ")).collect(Collectors.toList()); + } Review Comment: The output was: ``` import org.apache.jackrabbit.guava.common.base.Splitter import java.util.Arrays import java.util.List import java.util.stream.Collectors field String separator = " " Defined field String input = " " Defined field List<String> guavaList = [, , , ] System.out.println("Guava: " + guavaList.size()); Guava: 4 Defined field List<String> jseList = [, , ] System.out.println("Stream API: " + jseList.size()); Stream API: 3 ``` -- 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: oak-dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org