IDEA-174549 Added missing question mark

This commit is contained in:
Dmitriy Smirnov
2017-06-16 14:16:19 +03:00
parent 491a3fb194
commit 29aa05b2e1
@@ -163,7 +163,7 @@ public class GitBranchUiHandlerImpl implements GitBranchUiHandler {
@NotNull Collection<String> trackingBranches,
@NotNull Collection<GitRepository> repositories) {
String title = "Delete Remote Branch";
String message = "Delete remote branch " + branchName;
String message = "Delete remote branch " + branchName + "?";
if (trackingBranches.isEmpty()) {
return YES == DialogManager.showOkCancelDialog(myProject, message, title, "Delete", "Cancel", getQuestionIcon()) ? DELETE : CANCEL;