mbaedke commented on code in PR #1839:
URL: https://github.com/apache/jackrabbit-oak/pull/1839#discussion_r1827503085


##########
oak-run/src/main/groovy/org/apache/jackrabbit/oak/console/commands/CdCommand.groovy:
##########
@@ -67,7 +66,7 @@ class CdCommand extends CommandSupport{
         } else {
             path = PathUtils.concat(session.getWorkingPath(), arg);
         }
-        List<String> elements = Lists.newArrayList();
+        List<String> elements = new ArrayList<>(Arrays.asList());

Review Comment:
   Maybe just new ArrayList<>() ?



-- 
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