Skip to content

Commit

Permalink
J3oDump: convert a static-private field to a local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Nov 25, 2023
1 parent d147e47 commit 7e986e1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions J3oDump/src/main/java/jme3utilities/cli/J3oDump.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ final public class J3oDump {
* option to list textures
*/
private static boolean listTextures = false;
/**
* option to print the help/usage hints
*/
private static boolean printHelp = false;
/**
* dump asset descriptions to {@code System.out}
*/
Expand Down Expand Up @@ -114,6 +110,7 @@ public static void main(String[] arguments) {
dumper.setDumpUser(false);

// Process the command-line arguments.
boolean printHelp = false;
int numArguments = arguments.length;
if (numArguments == 0) {
printHelp = true;
Expand Down

0 comments on commit 7e986e1

Please sign in to comment.