-
Notifications
You must be signed in to change notification settings - Fork 411
Closed
Description
[provide a description of the issue]
Environment
Version: 1.62.3 (user setup)
Commit: ccbaa2d27e38e5afa3e5c21c1c7bef4657064247
Date: 2021-11-17T08:11:14.551Z
Electron: 13.5.2
Chrome: 91.0.4472.164
Node.js: 14.16.0
V8: 9.1.269.39-electron.0
OS: Windows_NT x64 10.0.19044
Steps To Reproduce
- Set
"java.debug.settings.stepping.skipSynthetics": true - Run the following code
import java.util.Calendar;
import java.util.Date;
import static java.lang.System.out;
public final class Test {
public static void main(final String[] arguments) {
Test.NestedClass nested = new Test.NestedClass();
out.println("String: " + nested.highlyConfidential);
out.println("Int: " + nested.highlyConfidentialInt);
out.println("Calendar: " + nested.highlyConfidentialCalendar);
out.println("Boolean: " + nested.highlyConfidentialBoolean);
out.println("Date: " + nested.getDate());
}
private static final class NestedClass {
private String highlyConfidential = "Don't tell anyone about me";
private int highlyConfidentialInt = 42;
private Calendar highlyConfidentialCalendar = Calendar.getInstance();
private boolean highlyConfidentialBoolean = true;
private Date date = new Date();
public Date getDate() {
return this.date;
}
}
}Metadata
Metadata
Assignees
Labels
No labels