Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Nov 11, 2024
1 parent f6f2204 commit 4f05f24
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions extension/src/Extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,9 @@ export class Extension {

private async registerGradleTestRunner(): Promise<void> {
// To register the Gradle test runner, we need to wait for the Test Runner extension to be activated.
// The Test Runner extension is dependent on the Java extension, VS Code has an issue that it doesn't
// activate the Java extension before the Test Runner extension if we call testExtension.activate().
// The Test Runner extension depends on the Java extension, VS Code has an issue that it doesn't
// activate the Java extension before the Test Runner extension if we call activate() for the test extension.
// Thus here we need to activate the Java extension first.
const javaLsExtension = vscode.extensions.getExtension("redhat.java");
if (!javaLsExtension) {
return;
Expand Down

0 comments on commit 4f05f24

Please sign in to comment.