Skip to content

Commit 4397ccc

Browse files
chore: workspaceUri -> workspaceFolderUri
1 parent 478d871 commit 4397ccc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/upgrade/assessmentManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ async function getProjectIssues(projectNode: INodeData): Promise<UpgradeIssue[]>
114114
return issues;
115115
}
116116

117-
async function getWorkspaceIssues(workspaceUri: string): Promise<UpgradeIssue[]> {
118-
const projects = await Jdtls.getProjects(workspaceUri);
117+
async function getWorkspaceIssues(workspaceFolderUri: string): Promise<UpgradeIssue[]> {
118+
const projects = await Jdtls.getProjects(workspaceFolderUri);
119119
const projectsIssues = await Promise.allSettled(projects.map(async (projectNode) => {
120120
const issues = await getProjectIssues(projectNode);
121121
sendInfo("", {

0 commit comments

Comments
 (0)