From 45c9cd5d1a8bd08723b6cc761fb8e13793be4726 Mon Sep 17 00:00:00 2001 From: Konloch Date: Thu, 15 Jul 2021 12:39:43 -0700 Subject: [PATCH] Display Opened File Path A bit better for debugging which file the user has opened --- .../club/bytecodeviewer/resources/importing/ImportResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/resources/importing/ImportResource.java b/src/main/java/the/bytecode/club/bytecodeviewer/resources/importing/ImportResource.java index fec670fa..fb9e50ba 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/resources/importing/ImportResource.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/resources/importing/ImportResource.java @@ -42,7 +42,7 @@ public class ImportResource implements Runnable for (final File file : files) { final String fn = file.getName(); - System.out.println("Opening..." + fn); + System.out.println("Opening..." + file.getAbsolutePath()); //check if file exists if (!file.exists())