Shanedell opened a new issue, #357: URL: https://github.com/apache/daffodil-vscode/issues/357
This issue was found by @mbeckerle in the 1.2.0-rc2 extension, more details of what issues he was facing can be found at https://lists.apache.org/thread/1r9swc9jl8yw28bjwsl64j5mzgy9wwpg. This issue is fixed with a relatively simple change as there seems to have been a typo in the code. On line 170 of `src/daffodilDebugger.ts` this if statement: ```ts if (config.daffodilDebugClassPath) { ``` to be ```ts if (config.daffodilDebugClasspath) { ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
