dweiss commented on code in PR #14880:
URL: https://github.com/apache/lucene/pull/14880#discussion_r2176619714


##########
lucene/luke/src/java/org/apache/lucene/luke/app/desktop/components/dialog/menubar/OpenIndexDialogFactory.java:
##########
@@ -293,7 +293,11 @@ private File getLastOpenedDirectory() {
       if (!history.isEmpty()) {
         Path path = Paths.get(history.get(0));
         if (Files.exists(path)) {
-          return path.getParent().toAbsolutePath().toFile();
+          if(path.getParent() != null) {
+            return path.getParent().toAbsolutePath().toFile();
+          }else {
+            return path.toAbsolutePath().toFile();
+          }

Review Comment:
   Run ./gradlew tidy to clean up code formatting. When is this situation 
possible, by the way (a file without a parent directory)?



-- 
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: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to