Skip to content

Commit

Permalink
Fixed the issue of showing the wrong project name for the 'remove pro…
Browse files Browse the repository at this point in the history
…ject' dialog
  • Loading branch information
vaisakhkannan committed Aug 30, 2023
1 parent 4ee868b commit 4e3df79
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ protected ArrayList<BuildFile> getGradleBuildFiles(Project project) throws IOExc

@Override
protected void executeLibertyAction(LibertyModule libertyModule) {
Project project = libertyModule.getProject();
String projectName = project.getName();
String projectName = libertyModule.getName();
final int result = Messages.showYesNoDialog(
LocalizedResourceUtil.getMessage("liberty.project.remove.confirmation.dialog.message", projectName),
getChooseDialogTitle(),
Expand Down

0 comments on commit 4e3df79

Please sign in to comment.