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


##########
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:
   Sorry ,I am a newer for github.  And I just commit the code which I had 
tested last year. So I have no local develop environment.  How can I Run 
./gradlew tidy to clean up code formatting?   This situation occured when I 
open a directory from another window pc by share folder.



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