Skip to content

Commit 239973c

Browse files
Fix the stepFilters setting keys (#1086)
1 parent 5443184 commit 239973c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Encoding - Launching BAT for UTF-8 fix is incompatible with Security Policies disallowing BAT execution. [#646](https://github.com/microsoft/vscode-java-debug/issues/646).
1515
- Encoding - Non-ASCII char support for Windows terminals. [#622](https://github.com/microsoft/vscode-java-debug/issues/622).
1616
- Encoding - [Windows non-ASCII folder] Error: Could not find or load main class. [#623](https://github.com/microsoft/vscode-java-debug/issues/623).
17+
- Step filter in the settings.json is not working. [#1085](https://github.com/microsoft/vscode-java-debug/issues/1085).
1718
- Contribution from [
1819
John Grant](https://github.com/cyrfer): Support multiline values in envFile. [#1061](https://github.com/microsoft/vscode-java-debug/issues/1061).
1920
- Contribution from [
2021
Adrien Piquerez](https://github.com/adpi2). Fix NPE when using step filter. [microsoft/java-debug#387](https://github.com/microsoft/java-debug/pull/387).
22+
- Contribution from [Douglas M. Barcellos](https://github.com/dougmbarcellos). Update telemetry setting declaration in README. [#1084](https://github.com/microsoft/vscode-java-debug/pull/1084).
2123

2224
## 0.36.0 - 2021-09-23
2325
### Changed

src/configurationProvider.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -663,9 +663,9 @@ async function updateDebugSettings(event?: vscode.ConfigurationChangeEvent) {
663663
try {
664664
const stepFilters = {
665665
skipClasses: await substituteFilterVariables(debugSettingsRoot.settings.stepping.skipClasses),
666-
skipSynthetics: debugSettingsRoot.settings.skipSynthetics,
667-
skipStaticInitializers: debugSettingsRoot.settings.skipStaticInitializers,
668-
skipConstructors: debugSettingsRoot.settings.skipConstructors,
666+
skipSynthetics: debugSettingsRoot.settings.stepping.skipSynthetics,
667+
skipStaticInitializers: debugSettingsRoot.settings.stepping.skipStaticInitializers,
668+
skipConstructors: debugSettingsRoot.settings.stepping.skipConstructors,
669669
};
670670
const exceptionFilters = {
671671
skipClasses: await substituteFilterVariables(debugSettingsRoot.settings.exceptionBreakpoint.skipClasses),

0 commit comments

Comments
 (0)