mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
hg: suppress i18n warnings for commit message templates
GitOrigin-RevId: 7f3d33d6730d15d1e5b25b9bc9bd46827e12a034
This commit is contained in:
committed by
intellij-monorepo-bot
parent
112f6edafe
commit
060fdc2cd5
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user