Skip to content

Commit

Permalink
fix: Display "Coverage" tool window correctly after executing "run wi…
Browse files Browse the repository at this point in the history
…th coverage"

closes #6501
  • Loading branch information
Tomasz Pasternak committed Jun 24, 2024
1 parent 78a20d2 commit 9db1ce3
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,16 @@ public String getPresentableText() {
return Blaze.defaultBuildSystemName() + " Coverage";
}


// #api241 inline
// https://github.com/JetBrains/intellij-community/commit/a3ccb39c0a49173ceee13e0eb7d06598b0e1a2de
// Add @Override after we drop 241 support
@Nullable
public CoverageViewExtension createCoverageViewExtension(
Project project, CoverageSuitesBundle suites) {
return createCoverageViewExtension(project, suites, null);
}

@Nullable
@Override
public CoverageViewExtension createCoverageViewExtension(
Expand Down

0 comments on commit 9db1ce3

Please sign in to comment.