IDEA-CR-15513 rename to DefaultRunProgramRunner

This commit is contained in:
Vladimir Krivosheev
2016-11-09 13:38:40 +01:00
parent 9e4d3492cd
commit 126d4b3981
3 changed files with 4 additions and 4 deletions
@@ -24,8 +24,8 @@ import com.intellij.openapi.fileEditor.FileDocumentManager
import org.jetbrains.concurrency.Promise
import org.jetbrains.concurrency.resolvedPromise
private class DefaultProgramRunnerImpl : AsyncGenericProgramRunner<RunnerSettings>() {
override fun getRunnerId() = "defaultRunner"
private class DefaultRunProgramRunner : AsyncGenericProgramRunner<RunnerSettings>() {
override fun getRunnerId() = "defaultRunRunner"
override fun prepare(environment: ExecutionEnvironment, state: RunProfileState): Promise<RunProfileStarter> {
FileDocumentManager.getInstance().saveAllDocuments()
@@ -75,7 +75,7 @@
<treeStructureProvider implementation="com.intellij.platform.PlatformProjectViewStructureProvider"/>
<programRunner implementation="com.intellij.execution.runners.DefaultProgramRunnerImpl" order="last"/>
<programRunner implementation="com.intellij.execution.runners.DefaultRunProgramRunner" order="last"/>
<projectConfigurable groupId="editor" groupWeight="160" displayName="Inspections" id="Errors" instance="com.intellij.profile.codeInspection.ui.ProjectInspectionToolsConfigurable" order="before preferences.intentionPowerPack"/>
<projectConfigurable groupId="appearance" groupWeight="111" instance="com.intellij.ide.util.scopeChooser.ScopeChooserConfigurable" id="project.scopes" key="scopes.display.name" bundle="messages.IdeBundle" />
+1 -1
View File
@@ -341,7 +341,7 @@
<stepsBeforeRunProvider implementation="com.intellij.compiler.options.CompileStepBeforeRunNoErrorCheck" id="compileBeforeRunNoErrorCheck" order="after compileBeforeRun"/>
<stepsBeforeRunProvider implementation="com.intellij.packaging.impl.run.BuildArtifactsBeforeRunTaskProvider" order="after compileBeforeRunNoErrorCheck"/>
<programRunner id="defaultRunRunner" implementation="com.intellij.execution.impl.DefaultJavaProgramRunner"/>
<programRunner implementation="com.intellij.execution.runners.DefaultProgramRunnerImpl" order="last"/>
<programRunner implementation="com.intellij.execution.runners.DefaultRunProgramRunner" order="last"/>
<hectorComponentProvider implementation="com.intellij.codeInsight.daemon.impl.ImportPopupHectorComponentProvider"/>