File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ async function httpsGet(urlString: string): Promise<string> {
4747class MetadataManager {
4848 private dependencyCheckMetadata : DependencyCheckMetadata = { } ;
4949
50- public getDependencyMetadata ( groupId : string ) : DependencyCheckItem | undefined {
51- if ( groupId === Upgrade . DIAGNOSTICS_GROUP_ID_FOR_JAVA_ENGINE ) {
50+ public getDependencyMetadata ( packageId : string ) : DependencyCheckItem | undefined {
51+ if ( packageId === Upgrade . DIAGNOSTICS_GROUP_ID_FOR_JAVA_ENGINE ) {
5252 return {
5353 name : "Java Engine" ,
5454 supportedVersion : ">=21" ,
5555 }
5656 }
57- return this . dependencyCheckMetadata [ groupId ] ;
57+ return this . dependencyCheckMetadata [ packageId ] ;
5858 }
5959
6060 public async tryRefreshMetadata ( context : ExtensionContext ) {
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ export type UpgradeIssue = {
2323 suggestedVersion ?: string ;
2424}
2525
26- export type FileIssues = Record < /* groupId */ string , UpgradeIssue > ;
26+ export type FileIssues = Record < /* packageId */ string , UpgradeIssue > ;
You can’t perform that action at this time.
0 commit comments