Skip to content

Commit

Permalink
Change out-commented debug code to being disabled by an if block.
Browse files Browse the repository at this point in the history
  • Loading branch information
unsound committed Oct 9, 2021
1 parent 25f9227 commit df190ba
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/java/org/catacombae/hfsexplorer/FileSystemBrowserWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -3305,13 +3305,16 @@ public static void main(String[] args) {
/* boolean debugConsole */
debugConsole);

/*
System.err.println(FileSystemBrowserWindow.class.getName() + ".main invoked.");
for(int i = 0; i < args.length; ++i)
System.err.println(" args[" + i + "]: \"" + args[i] + "\"");
System.err.println();
System.err.println("java.library.path=\"" + System.getProperty("java.library.path") + "\"");
*/
if(false) {
System.err.println(FileSystemBrowserWindow.class.getName() +
".main invoked.");
for(int i = 0; i < args.length; ++i) {
System.err.println(" args[" + i + "]: \"" + args[i] + "\"");
}
System.err.println();
System.err.println("java.library.path=\"" +
System.getProperty("java.library.path") + "\"");
}

if(args.length > parsedArgs) {
String filename = args[parsedArgs];
Expand Down

0 comments on commit df190ba

Please sign in to comment.