From 20344df577306ecd7321aafaa0a6e49f44cacdb2 Mon Sep 17 00:00:00 2001 From: Nadya Zabrodina Date: Wed, 29 May 2019 16:57:40 +0300 Subject: [PATCH] shelf: cleanup - fix capitalization GitOrigin-RevId: e0f6c1759c16aa2e8891c6bd964b1cad40a1e3ab --- .../openapi/vcs/changes/shelf/ImportIntoShelfAction.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/platform/vcs-impl/src/com/intellij/openapi/vcs/changes/shelf/ImportIntoShelfAction.java b/platform/vcs-impl/src/com/intellij/openapi/vcs/changes/shelf/ImportIntoShelfAction.java index 8566a2ba5427..2c92eed9dd40 100644 --- a/platform/vcs-impl/src/com/intellij/openapi/vcs/changes/shelf/ImportIntoShelfAction.java +++ b/platform/vcs-impl/src/com/intellij/openapi/vcs/changes/shelf/ImportIntoShelfAction.java @@ -32,9 +32,6 @@ import org.jetbrains.annotations.NotNull; import java.util.ArrayList; import java.util.List; -/** - * @author irengrig - */ public class ImportIntoShelfAction extends DumbAwareAction { public ImportIntoShelfAction() { super("Import Patches...", "Copies a patch file to the shelf", null); @@ -58,7 +55,7 @@ public class ImportIntoShelfAction extends DumbAwareAction { final List patchTypeFiles = new ArrayList<>(); final boolean filesFound = pm.runProcessWithProgressSynchronously( - (Runnable)() -> patchTypeFiles.addAll(shelveChangesManager.gatherPatchFiles(files)), "Looking for patch files...", true, project); + (Runnable)() -> patchTypeFiles.addAll(shelveChangesManager.gatherPatchFiles(files)), "Looking for Patch Files...", true, project); if (!filesFound || patchTypeFiles.isEmpty()) return; if (!patchTypeFiles.equals(files)) { final String message = "Found " + (patchTypeFiles.size() == 1 ? @@ -81,7 +78,7 @@ public class ImportIntoShelfAction extends DumbAwareAction { if (lists.isEmpty() && exceptions.isEmpty()) { VcsBalloonProblemNotifier.showOverChangesView(project, "No patches found", MessageType.WARNING); } - }, "Import patches into shelf", true, project); + }, "Import Patches into Shelf...", true, project); }); } }