From 368c36fb89047ad445e504ba227795dc5e613e91 Mon Sep 17 00:00:00 2001 From: Alex Ruiz Date: Wed, 13 Nov 2013 06:42:53 -0800 Subject: [PATCH] Made Run-configuration-related keys public. Change-Id: I3b393dedd4e97861080205fb68e62ed92b6f2344 --- .../com/intellij/compiler/options/CompileStepBeforeRun.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/execution/impl/src/com/intellij/compiler/options/CompileStepBeforeRun.java b/java/execution/impl/src/com/intellij/compiler/options/CompileStepBeforeRun.java index eb3f28078df3..d397f0d1d005 100644 --- a/java/execution/impl/src/com/intellij/compiler/options/CompileStepBeforeRun.java +++ b/java/execution/impl/src/com/intellij/compiler/options/CompileStepBeforeRun.java @@ -47,8 +47,8 @@ import javax.swing.*; public class CompileStepBeforeRun extends BeforeRunTaskProvider { private static final Logger LOG = Logger.getInstance("#com.intellij.compiler.options.CompileStepBeforeRun"); public static final Key ID = Key.create("Make"); - private static final Key RUN_CONFIGURATION = Key.create("RUN_CONFIGURATION"); - private static final Key RUN_CONFIGURATION_TYPE_ID = Key.create("RUN_CONFIGURATION_TYPE_ID"); + public static final Key RUN_CONFIGURATION = Key.create("RUN_CONFIGURATION"); + public static final Key RUN_CONFIGURATION_TYPE_ID = Key.create("RUN_CONFIGURATION_TYPE_ID"); @NonNls protected static final String MAKE_PROJECT_ON_RUN_KEY = "makeProjectOnRun";