reschke commented on code in PR #1889:
URL: https://github.com/apache/jackrabbit-oak/pull/1889#discussion_r1876091363
##########
oak-run/src/main/java/org/apache/jackrabbit/oak/run/DataStoreCommand.java:
##########
@@ -212,12 +211,11 @@ private void execute(NodeStoreFixture fixture,
DataStoreOptions dataStoreOpts, O
while (idIter.hasNext()) {
String id = idIter.next();
- final Joiner delimJoiner =
Joiner.on(DELIM).skipNulls();
// If --verbose is present, convert blob
ID to a backend friendly format and
// concat the path that has the ref.
Otherwise simply add the ID to the o/p file
// as it is.
String line = dataStoreOpts.isVerbose() ?
-
VerboseIdLogger.encodeId(delimJoiner.join(id, escapeLineBreak(nodeId)),
+
VerboseIdLogger.encodeId(String.join(DELIM, id, escapeLineBreak(nodeId)),
Review Comment:
it might
--
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]