mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
[diff] fix unresolved message property reference
GitOrigin-RevId: 9dcefd0309fbf7426db7e8bf267c140b87949fe0
This commit is contained in:
committed by
intellij-monorepo-bot
parent
256fa15977
commit
d49de937a2
@@ -791,9 +791,9 @@ public class DirDiffTableModel extends AbstractTableModel implements DirDiffMode
|
||||
|
||||
private boolean confirmDeletion(int count) {
|
||||
return MessageDialogBuilder.yesNo(DiffBundle.message("confirm.delete"),
|
||||
DiffBundle.message("delete.0.items", count)).project(myProject).yesText(
|
||||
DiffBundle.message("button.delete")).noText(
|
||||
CommonBundle.getCancelButtonText()).doNotAsk(
|
||||
DiffBundle.message("delete.0.items", count)).project(myProject)
|
||||
.yesText(CommonBundle.message("button.delete"))
|
||||
.noText(CommonBundle.getCancelButtonText()).doNotAsk(
|
||||
new DialogWrapper.DoNotAskOption() {
|
||||
@Override
|
||||
public boolean isToBeShown() {
|
||||
|
||||
Reference in New Issue
Block a user