hg: suppress i18n warnings for commit message templates

GitOrigin-RevId: 7f3d33d6730d15d1e5b25b9bc9bd46827e12a034
This commit is contained in:
Aleksey Pivovarov
2020-08-18 20:45:38 +00:00
committed by intellij-monorepo-bot
parent 112f6edafe
commit 060fdc2cd5
3 changed files with 3 additions and 3 deletions
@@ -73,7 +73,7 @@ public class HgTaskHandler extends DvcsTaskHandler<HgRepository> {
Project project = repository.getProject();
VirtualFile repositoryRoot = repository.getRoot();
try {
new HgCommitCommand(project, repository, "Automated merge with " + branch).executeInCurrentThread();
new HgCommitCommand(project, repository, "Automated merge with " + branch).executeInCurrentThread(); //NON-NLS
HgBookmarkCommand.deleteBookmarkSynchronously(project, repositoryRoot, branch);
}
catch (HgCommandException e) {
@@ -187,7 +187,7 @@ public class HgBranchPopupActions {
HgCloseBranchExecutor closeBranchExecutor = vcs.getCloseBranchExecutor();
closeBranchExecutor.setRepositories(myRepositories);
CommitChangeListDialog.commitChanges(project, changesForRepositories, changesForRepositories, activeChangeList,
Collections.singletonList(closeBranchExecutor), false, vcs, "Close Branch", null, false);
Collections.singletonList(closeBranchExecutor), false, vcs, "Close Branch", null, false); //NON-NLS
}
@Override
@@ -193,7 +193,7 @@ public class HgRegularUpdater implements HgUpdater {
LOG.warn("Couldn't find repository info for " + repoRoot.getName());
return;
}
new HgCommitCommand(project, hgRepository, "Automated merge").executeInCurrentThread();
new HgCommitCommand(project, hgRepository, "Automated merge").executeInCurrentThread(); //NON-NLS
}
catch (HgCommandException e) {
throw new VcsException(e);