Skip to content

Commit fc59d8b

Browse files
Don't show static fields by default (#263)
Signed-off-by: Jinbo Wang <[email protected]>
1 parent 6a9e196 commit fc59d8b

File tree

1 file changed

+1
-1
lines changed
  • com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core

1 file changed

+1
-1
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/DebugSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public final class DebugSettings {
2121
private static DebugSettings current = new DebugSettings();
2222

2323
public int maxStringLength = 0;
24-
public boolean showStaticVariables = true;
24+
public boolean showStaticVariables = false;
2525
public boolean showQualifiedNames = false;
2626
public boolean showHex = false;
2727
public boolean enableHotCodeReplace = false;

0 commit comments

Comments
 (0)